Requiring `berkeley_library/logging` in a Rails app unconditionally runs the [initializer](https://github.com/BerkeleyLibrary/logging/blob/8352b3d19cca81158d469dec25b651384fd78733/lib/berkeley_library/logging/railtie.rb#L10-L13) from the Railtie. It would be nice if ([as in Lograge](https://github.com/roidrage/lograge/blob/v0.14.0/lib/lograge/railtie.rb#L17)) there was a configuration flag allowing this to be disabled. As a workaround, I was able to make the initializer a no-op by adding the following to my `application.rb`: ```ruby config.before_configuration do Rails.application.initializers .find { |init| init.name == 'logging.configure_berkeley_library_logging' } .instance_variable_set(:@block, ->(_app) {}) end ```