module Mingle::Logging

Constants

LOGGER
VERBOSE

Public Class Methods

debug(msg) click to toggle source
# File lib/mingle/logging.rb, line 13
def self.debug(msg)
  LOGGER.debug(msg)
end
error(msg) click to toggle source
# File lib/mingle/logging.rb, line 17
def self.error(msg)
  LOGGER.error(msg)
end
info(msg) click to toggle source
# File lib/mingle/logging.rb, line 9
def self.info(msg)
  LOGGER.info(msg)
end

Public Instance Methods

logger() click to toggle source
# File lib/mingle/logging.rb, line 21
def logger
  LOGGER
end