module DebugLogging::ApiClassMethods

Public Instance Methods

debug_config() click to toggle source

There are times when the class will need access to the configuration object,

such as to override it per instance method
# File lib/debug_logging.rb, line 105
def debug_config
  @debug_logging_configuration
end
debug_log(message = nil, config_proxy = nil, &block) click to toggle source

Not used by this gem internally, but provides an external interface for

classes to also use this logging tool directly,
with configured options like benchmarking, colors, or leg level.
# File lib/debug_logging.rb, line 95
def debug_log(message = nil, config_proxy = nil, &block)
  # If a, instance-method-level, or class-method-level custom config is not
  #   passed in, then fall back to the class' default config, which is a
  #   potentially customized copy of the default config for the whole app.
  config_proxy ||= debug_config
  config_proxy.log(message, &block)
end