module Lumberjack::TaggedLogging

Monkey patch for ActiveSupport::TaggedLogger so it doesn't blow up when a Lumberjack logger is trying to be wrapped. This module will be automatically included in ActiveSupport::TaggedLogger if activesupport is already loaded.

Public Class Methods

included(base) click to toggle source
# File lib/lumberjack/tagged_logging.rb, line 9
def included(base)
  base.singleton_class.send(:prepend, ClassMethods)
end