class Logger def self.log(msg) time = Time.now.utc.strftime("%Y-%m-%d %H:%M:%S") puts "#{time}: #{msg}" end end