module Logging

Attributes

logger[W]

Public Instance Methods

logger() click to toggle source
# File lib/dynamodb_mutex/logging.rb, line 6
def logger
  @logger ||= lambda {
    logger = Logger.new(STDOUT, 1024*1024, 10)
    logger.level = Logger::DEBUG
    logger
  }.call
end