module EasyAppHelper::Logger::Wrapper
Public Instance Methods
puts_and_logs(*args)
click to toggle source
# File lib/easy_app_helper/logger/wrapper.rb, line 5 def puts_and_logs(*args) puts *args if EasyAppHelper.config[:verbose] info(*args) end