Module: BotNyan::Info

Included in:
Base, Wrapper::TwitterWrapper
Defined in:
lib/bot_nyan/base.rb

Overview

For print debugs, infos, warns

Instance Method Summary collapse

Instance Method Details

#debug(msg) ⇒ Object



32
33
34
# File 'lib/bot_nyan/base.rb', line 32

def debug(msg)
  @logger.debug msg
end

#error(msg) ⇒ Object



28
29
30
# File 'lib/bot_nyan/base.rb', line 28

def error(msg)
  @logger.error msg
end

#info(msg) ⇒ Object



20
21
22
# File 'lib/bot_nyan/base.rb', line 20

def info(msg)
  @logger.info msg
end

#logger_set!(cond) ⇒ Object



15
16
17
18
# File 'lib/bot_nyan/base.rb', line 15

def logger_set!(cond)
  @logger = Logger.new STDOUT
  @logger.level = cond ? Logger::DEBUG : Logger::INFO
end

#warn(msg) ⇒ Object



24
25
26
# File 'lib/bot_nyan/base.rb', line 24

def warn(msg)
  @logger.warn msg
end