Ryan Rauh
Ryan Rauh
As a workaround: add the following to `config/environment.rb` ``` # Load the rails application require File.expand_path('../application', __FILE__) module Logging module RailsCompat def formatter self end def tagged(*_args) yield self end...
thanks @katiekeel Try adding this additional stuff I ran into ``` module Logging module RailsCompat def formatter self end def tagged(*_args) yield self end def current_tags [] end end end...