lib/marlowe/formatter.rb in marlowe-1.0.3 vs lib/marlowe/formatter.rb in marlowe-2.0

- old
+ new

@@ -1,14 +1,14 @@ +# frozen_string_literal: true + require 'request_store' module Marlowe - # Marlowe::Formatter is a subclass of +ActiveSupport::Logger::Formatter+ # that adds a correlation id string to a rails log. class Formatter < ActiveSupport::Logger::Formatter - # Overrides the formatter return to add the correlation id. - def call(severity, timestamp, progname, msg) + def call(_severity, _timestamp, _progname, _msg) "[#{RequestStore.store[:correlation_id]}] #{super}" end end end