Method: Log.warning

Defined in:
lib/log.rb

.warning(message) ⇒ Object

Warning we want to show to the user.



13
14
15
# File 'lib/log.rb', line 13

def self.warning(message)
  puts "Warning: #{message}".colorize(:yellow)
end