Class: AppPerfRpm::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/app_perf_rpm/logger.rb

Instance Method Summary collapse

Instance Method Details

#debug(msg) ⇒ Object



13
14
15
# File 'lib/app_perf_rpm/logger.rb', line 13

def debug(msg)
  AppPerfRpm.info(msg)
end

#error(msg) ⇒ Object



21
22
23
# File 'lib/app_perf_rpm/logger.rb', line 21

def error(msg)
  AppPerfRpm.info(msg)
end

#fatal(msg) ⇒ Object



25
26
27
# File 'lib/app_perf_rpm/logger.rb', line 25

def fatal(msg)
  AppPerfRpm.info(msg)
end

#info(msg) ⇒ Object



9
10
11
# File 'lib/app_perf_rpm/logger.rb', line 9

def info(msg)
  AppPerfRpm.info(msg)
end

#warn(msg) ⇒ Object



17
18
19
# File 'lib/app_perf_rpm/logger.rb', line 17

def warn(msg)
  AppPerfRpm.info(msg)
end