Class: Zold::Node::WebrickLog

Inherits:
Object
  • Object
show all
Defined in:
lib/zold/commands/node.rb

Overview

Fake logging facility for Webrick

Instance Method Summary collapse

Constructor Details

#initialize(log) ⇒ WebrickLog

Returns a new instance of WebrickLog.



245
246
247
# File 'lib/zold/commands/node.rb', line 245

def initialize(log)
  @log = log
end

Instance Method Details

#debug(msg) ⇒ Object



253
254
255
# File 'lib/zold/commands/node.rb', line 253

def debug(msg)
  # nothing
end

#debug?Boolean

Returns:

  • (Boolean)


261
262
263
# File 'lib/zold/commands/node.rb', line 261

def debug?
  @log.info?
end

#fatal(msg) ⇒ Object



257
258
259
# File 'lib/zold/commands/node.rb', line 257

def fatal(msg)
  @log.error(msg)
end

#info(msg) ⇒ Object



249
250
251
# File 'lib/zold/commands/node.rb', line 249

def info(msg)
  @log.debug(msg)
end