Class: UnionPei::LogUtil
- Inherits:
-
Object
- Object
- UnionPei::LogUtil
- Defined in:
- lib/unionpei/log_util.rb
Constant Summary collapse
- @@logger =
nil
Class Method Summary collapse
- .debug(msg) ⇒ Object
- .error(msg) ⇒ Object
- .fatal(msg) ⇒ Object
- .getLogger ⇒ Object
- .info(msg) ⇒ Object
- .parse_caller(at) ⇒ Object
- .warn(msg) ⇒ Object
Class Method Details
.debug(msg) ⇒ Object
59 60 61 |
# File 'lib/unionpei/log_util.rb', line 59 def self.debug(msg) LogUtil.getLogger.debug(msg) end |
.error(msg) ⇒ Object
67 68 69 |
# File 'lib/unionpei/log_util.rb', line 67 def self.error(msg) LogUtil.getLogger.error(msg) end |
.fatal(msg) ⇒ Object
71 72 73 |
# File 'lib/unionpei/log_util.rb', line 71 def self.fatal(msg) LogUtil.getLogger.fatal(msg) end |
.getLogger ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/unionpei/log_util.rb', line 15 def self.getLogger unless @@logger @@logger = if SDKConfig.instance.logFilePath.nil? Logger.new($stdout) else Logger.new(SDKConfig.instance.logFilePath) end @@logger.datetime_format = '%Y-%m-%d %H:%M:%S' @@logger.formatter = proc do |severity, datetime, progname, msg| "#{datetime} [#{severity}] #{progname}: #{msg}\n" end @@logger.level = case SDKConfig.instance.logLevel.upcase when 'INFO' Logger::INFO when 'DEBUG' Logger::DEBUG when 'WARN' Logger::WARN when 'ERROR' Logger::ERROR when 'FATAL' Logger::FATAL else Logger::UNKNOWN end end p = LogUtil.parse_caller(caller(0)[2]) @@logger.progname = "#{p[0]}:#{p[1]}" @@logger end |
.info(msg) ⇒ Object
55 56 57 |
# File 'lib/unionpei/log_util.rb', line 55 def self.info(msg) LogUtil.getLogger.info(msg) end |
.parse_caller(at) ⇒ Object
46 47 48 49 50 51 52 53 |
# File 'lib/unionpei/log_util.rb', line 46 def self.parse_caller(at) if /^(.+?):(\d+)(?::in `(.*)')?/ =~ at file = Regexp.last_match(1) line = Regexp.last_match(2).to_i method = Regexp.last_match(3) [file, line, method] end end |