Sha256: 8e499a6396a97538ea2572d9c9848977480c11364da93cb6d489bdbea85438e4

Contents?: true

Size: 1.1 KB

Versions: 12

Compression:

Stored size: 1.1 KB

Contents

# Copyright (c) 2015 Sqreen. All Rights Reserved.
# Please refer to our terms for more information: https://www.sqreen.com/terms.html

require 'sqreen/performance_notifications'

module Sqreen
  module PerformanceNotifications
    # Log performances on the console
    class Log
      @subid = nil
      @facility = nil
      class << self
        def log(rule, cb, start, finish, meta)
          (@facility || Sqreen.log).debug do
            meta_str = nil
            meta_str = ": #{meta.inspect}" unless meta.empty?
            event = event_name(rule, cb)
            format('%s took %.2fms%s', event, (finish - start) * 1000, meta_str)
          end
        end

        def event_name(rule, cb)
          "Callbacks/#{rule}/#{cb}"
        end

        def enable(facility = nil)
          return unless @subid.nil?
          @facility = facility
          @subid = Sqreen::PerformanceNotifications.subscribe(&method(:log))
        end

        def disable
          return if @subid.nil?
          Sqreen::PerformanceNotifications.unsubscribe(@subid)
          @subid = nil
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
sqreen-1.18.6-java lib/sqreen/performance_notifications/log.rb
sqreen-1.18.6 lib/sqreen/performance_notifications/log.rb
sqreen-1.18.5-java lib/sqreen/performance_notifications/log.rb
sqreen-1.18.5 lib/sqreen/performance_notifications/log.rb
sqreen-1.18.4-java lib/sqreen/performance_notifications/log.rb
sqreen-1.18.4 lib/sqreen/performance_notifications/log.rb
sqreen-1.18.3-java lib/sqreen/performance_notifications/log.rb
sqreen-1.18.3 lib/sqreen/performance_notifications/log.rb
sqreen-1.18.3.beta2 lib/sqreen/performance_notifications/log.rb
sqreen-1.18.3.beta1 lib/sqreen/performance_notifications/log.rb
sqreen-1.18.2-java lib/sqreen/performance_notifications/log.rb
sqreen-1.18.2 lib/sqreen/performance_notifications/log.rb