# File 'lib/log_helper.rb', line 23deflog_debug(msg,tag="")iftag.nil?ortag.empty?Global.instance.logger.debugmsgelseGlobal.instance.logger.tdebugtag,msgendend
#log_error(msg, tag = "") ⇒ Object
31
32
33
34
35
36
37
# File 'lib/log_helper.rb', line 31deflog_error(msg,tag="")iftag.nil?ortag.empty?Global.instance.logger.errormsgelseGlobal.instance.logger.terrortag,msgendend