epimorphics / json-rails-logger

A custom rails logger that outputs JSON instead of raw text
MIT License
1 stars 1 forks source link

Logger base class is not from ActiveSupport #39

Closed ijdickinson closed 2 years ago

ijdickinson commented 2 years ago

Since this logger is specifically designed to be used in Rails, the base class should be ActiveSupport::Logger rather than ::Logger

This will ensure that the class has all of the extra features that Rails loggers expect.

ijdickinson commented 2 years ago

done