class Incline::JsonLogger

Overrides the default formatter for the base logger.

Public Class Methods

new(*args) click to toggle source

Sets the formatter to Incline::JsonLogFormatter.

Calls superclass method
# File lib/incline/json_logger.rb, line 11
def initialize(*args)
  super
  @formatter = ::Incline::JsonLogFormatter.new
end