Module: Log

Defined in:
lib/spigoter/log/log.rb

Class Method Summary collapse

Class Method Details

.error(msg) ⇒ Object



34
35
36
# File 'lib/spigoter/log/log.rb', line 34

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

.info(msg) ⇒ Object



28
29
30
# File 'lib/spigoter/log/log.rb', line 28

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

.warn(msg) ⇒ Object



31
32
33
# File 'lib/spigoter/log/log.rb', line 31

def self.warn(msg)
    @log.warn msg
end