Module: DefaultLogger

Included in:
Loompa
Defined in:
lib/loompa.rb

Class Method Summary collapse

Class Method Details

.debug(msg) ⇒ Object



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

def DefaultLogger.debug(msg)
  STDOUT.puts msg
end

.error(msg) ⇒ Object



15
16
17
# File 'lib/loompa.rb', line 15

def DefaultLogger.error(msg)
  STDOUT.puts msg
end

.info(msg) ⇒ Object



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

def DefaultLogger.info(msg)
  STDOUT.puts msg
end