class AppPerfRpm::Logger
Public Instance Methods
debug(msg)
click to toggle source
# File lib/app_perf_rpm/logger.rb, line 15 def debug(msg) AppPerfRpm.info(msg) end
error(msg)
click to toggle source
# File lib/app_perf_rpm/logger.rb, line 23 def error(msg) AppPerfRpm.info(msg) end
fatal(msg)
click to toggle source
# File lib/app_perf_rpm/logger.rb, line 27 def fatal(msg) AppPerfRpm.info(msg) end
info(msg)
click to toggle source
# File lib/app_perf_rpm/logger.rb, line 11 def info(msg) AppPerfRpm.info(msg) end
warn(msg)
click to toggle source
# File lib/app_perf_rpm/logger.rb, line 19 def warn(msg) AppPerfRpm.info(msg) end