Module: SQSPoller::Console_logger

Defined in:
lib/sqspoller/console_logger.rb

Class Method Summary collapse

Class Method Details

.debug(msg) ⇒ Object



11
12
13
# File 'lib/sqspoller/console_logger.rb', line 11

def debug(msg)
  STDERR.puts("DEBUG: %s: %s" % [Util.get_timestamp_utc.to_s, msg])
end

.info(msg) ⇒ Object



4
5
6
# File 'lib/sqspoller/console_logger.rb', line 4

def info(msg)
  STDOUT.puts("INFO: %s: %s" % [Util.get_timestamp_utc.to_s, msg])
end

.warn(msg) ⇒ Object



7
8
9
# File 'lib/sqspoller/console_logger.rb', line 7

def warn(msg)
  STDERR.puts("WARN: %s: %s" % [Util.get_timestamp_utc.to_s, msg])
end