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

Defined Under Namespace

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

Constant Summary collapse

VERSION =
"0.7.2"

Class Attribute Summary collapse

Class Attribute Details

.loggerObject



44
45
46
47
48
49
50
# File 'lib/keen.rb', line 44

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