module Monga

Constants

DEFAULT_HOST
DEFAULT_PORT
HEADER_SIZE
NULL_BYTE

Public Instance Methods

logger() click to toggle source
# File lib/monga.rb, line 10
def logger
  @logger ||= begin
    l = Logger.new(STDOUT)
    l.level = Logger::DEBUG
    l
  end
end