Class: Nightwing::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/nightwing/logger.rb

Instance Method Summary collapse

Instance Method Details

#debug(msg) ⇒ Object



3
4
5
# File 'lib/nightwing/logger.rb', line 3

def debug(msg)
  print :debug, msg
end

#info(msg) ⇒ Object



7
8
9
# File 'lib/nightwing/logger.rb', line 7

def info(msg)
  print :info, msg
end

#warn(msg) ⇒ Object



11
12
13
# File 'lib/nightwing/logger.rb', line 11

def warn(msg)
  print :warn, msg
end