module Climatic module Logger module Wrapper def puts_and_logs(*args) puts *args if Climatic.config[:verbose] info(*args) end end end end