Class: HolePunch::LoggerOutputStdio

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

Instance Method Summary collapse

Instance Method Details

#fatal(msg) ⇒ Object



27
28
29
# File 'lib/holepunch/logger.rb', line 27

def fatal(msg)
  $stderr.puts(msg)
end

#log(msg) ⇒ Object



23
24
25
# File 'lib/holepunch/logger.rb', line 23

def log(msg)
  $stdout.puts(msg)
end