Module: Keen

Extended by:
Forwardable
Defined in:
lib/keen.rb,
lib/keen/http.rb,
lib/keen/client.rb,
lib/keen/version.rb,
lib/keen/client/querying_methods.rb,
lib/keen/client/publishing_methods.rb,
lib/keen/client/maintenance_methods.rb

Defined Under Namespace

Modules: HTTP Classes: AuthenticationError, BadRequestError, Client, ConfigurationError, Error, HttpError, NotFoundError

Constant Summary collapse

VERSION =
"0.7.6"

Class Attribute Summary collapse

Class Attribute Details

.loggerObject



48
49
50
51
52
53
54
# File 'lib/keen.rb', line 48

def logger
  @logger ||= lambda {
    logger = Logger.new($stdout)
    logger.level = Logger::INFO
    logger
  }.call
end