class Bio::Log::NormalUser

NormalUser logs, but does not fail

Public Instance Methods

debug(logger,msg) click to toggle source

include LoggerSubLevels

# File lib/bio/log/loggerusers.rb, line 10
def debug logger,msg
  logger.debug msg
end
error(logger,msg) click to toggle source
# File lib/bio/log/loggerusers.rb, line 19
def error logger,msg
  logger.error msg
end
fatal(logger,msg) click to toggle source
# File lib/bio/log/loggerusers.rb, line 22
def fatal logger,msg
  logger.fatal msg
end
info(logger,msg) click to toggle source
# File lib/bio/log/loggerusers.rb, line 13
def info logger,msg
  logger.info msg
end
warn(logger,msg) click to toggle source
# File lib/bio/log/loggerusers.rb, line 16
def warn logger,msg
  logger.warn msg
end