summaryrefslogtreecommitdiff
path: root/lib/mixlib/log.rb
diff options
context:
space:
mode:
authorThom May <thom@chef.io>2018-01-17 10:34:57 +0000
committerThom May <thom@chef.io>2018-01-17 10:34:57 +0000
commit62249f18082129fb956804ecfa2f90529a6adc6d (patch)
tree50a5d844719b75e4ccbb5a7500721212b332cb2c /lib/mixlib/log.rb
parent989553b118791268db96f75afba002da05506b88 (diff)
downloadmixlib-log-62249f18082129fb956804ecfa2f90529a6adc6d.tar.gz
Add child loggers
Child loggers mean that we can create new instances of a logger for subsystems or specific classes, but still only have a single set of outputs. Signed-off-by: Thom May <thom@chef.io>
Diffstat (limited to 'lib/mixlib/log.rb')
-rw-r--r--lib/mixlib/log.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/mixlib/log.rb b/lib/mixlib/log.rb
index 7152a90..c6dc839 100644
--- a/lib/mixlib/log.rb
+++ b/lib/mixlib/log.rb
@@ -19,6 +19,7 @@
require "logger"
require "mixlib/log/version"
require "mixlib/log/formatter"
+require "mixlib/log/child"
module Mixlib
module Log
@@ -69,6 +70,19 @@ module Mixlib
@configured = true
end
+ def with_child
+ child = Child.new(self)
+ if block_given?
+ yield child
+ else
+ child
+ end
+ end
+
+ def pass(severity, args, progname = nil, &block)
+ add(severity, args, progname, &block)
+ end
+
# Use Mixlib::Log.init when you want to set up the logger manually. Arguments to this method
# get passed directly to Logger.new, so check out the documentation for the standard Logger class
# to understand what to do here.
@@ -82,6 +96,7 @@ module Mixlib
@logger.formatter = Mixlib::Log::Formatter.new() if @logger.respond_to?(:formatter=)
@logger.level = Logger::WARN
@configured = true
+ @parent = nil
@logger
end