class Strongbolt::Configuration::DefaultLogger

A placeholder class for logger when not defined Just print what's given

Public Instance Methods

method_missing(method_name, text = nil, &block) click to toggle source
# File lib/strongbolt/configuration.rb, line 8
def method_missing(method_name, text = nil, &block)
  puts "[#{method_name}] #{block.present? ? yield : text}"
end