Class: Flare::Util::Logger

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

Overview

Description

Logger is a custom logging class.

Direct Known Subclasses

DefaultLogger, Log4rLogger

Instance Method Summary collapse

Constructor Details

#initialize(logger) ⇒ Logger

Returns a new instance of Logger.



13
14
# File 'lib/flare/util/logger.rb', line 13

def initialize(logger)
end

Instance Method Details

#console?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/flare/util/logger.rb', line 34

def console?
  false
end

#debug(msg) ⇒ Object



31
32
# File 'lib/flare/util/logger.rb', line 31

def debug(msg)
end

#error(msg) ⇒ Object



25
26
# File 'lib/flare/util/logger.rb', line 25

def error(msg)
end

#fatal(msg) ⇒ Object



28
29
# File 'lib/flare/util/logger.rb', line 28

def fatal(msg)
end

#info(msg) ⇒ Object



16
17
# File 'lib/flare/util/logger.rb', line 16

def info(msg)
end

#trace(msg) ⇒ Object



22
23
# File 'lib/flare/util/logger.rb', line 22

def trace(msg)
end

#warn(msg) ⇒ Object



19
20
# File 'lib/flare/util/logger.rb', line 19

def warn(msg)
end