module TtlAuto::Log

Constants

LOG

Public Instance Methods

log_debug(str) click to toggle source
# File lib/ttlauto/log.rb, line 11
def log_debug(str)
  LOG.debug(str)
end
log_error(str) click to toggle source
# File lib/ttlauto/log.rb, line 8
def log_error(str)
  LOG.error(str)
end
log_info(str) click to toggle source
# File lib/ttlauto/log.rb, line 5
def log_info(str)
  LOG.info(str)
end