lib/semantic_logger/formatters/json.rb in semantic_logger-4.1.1 vs lib/semantic_logger/formatters/json.rb in semantic_logger-4.2.0
- old
+ new
@@ -1,15 +1,11 @@
require 'json'
module SemanticLogger
module Formatters
class Json < Raw
# Default JSON time format is ISO8601
- def initialize(time_format: :iso_8601, log_host: true, log_application: true)
- super(time_format: time_format, log_host: log_host, log_application: log_application)
- end
-
- def time
- hash[:timestamp] = format_time(log.time)
+ def initialize(time_format: :iso_8601, log_host: true, log_application: true, time_key: :timestamp)
+ super(time_format: time_format, log_host: log_host, log_application: log_application, time_key: time_key)
end
# Returns log messages in JSON format
def call(log, logger)
super(log, logger).to_json