class R10K::Initializers::LoggingInitializer
Public Instance Methods
call()
click to toggle source
# File lib/r10k/initializers.rb, line 51 def call with_setting(:level) { |value| R10K::Logging.level = value } with_setting(:disable_default_stderr) { |value| R10K::Logging.disable_default_stderr = value } with_setting(:outputs) { |value| R10K::Logging.add_outputters(value) } end