Module: Buckler::Logging
- Included in:
- Buckler, ThreadDispatch
- Defined in:
- lib/buckler/logging.rb
Instance Method Summary collapse
Instance Method Details
#alert(message) ⇒ Object
7 8 9 |
# File 'lib/buckler/logging.rb', line 7 def alert() STDERR.print("#{.dangerize}\n") end |
#log(message) ⇒ Object
3 4 5 |
# File 'lib/buckler/logging.rb', line 3 def log() STDOUT.print("#{}\n") end |
#verbose(message) ⇒ Object
11 12 13 |
# File 'lib/buckler/logging.rb', line 11 def verbose() STDERR.print("#{}\n") if $buckler_verbose_mode end |