Reid Morrison

Results 105 comments of Reid Morrison

Can you post the full stack trace, or at least the parts showing the Semantic Logger portions so that we can see where the error is coming from? Or, if...

Would be worthwhile to submit a pull request with this enhancement, along with a config option to disable the behavior? Enabling it by default sounds like a good option, allowing...

This issue is probably related: https://github.com/reidmorrison/rails_semantic_logger/issues/220

Thank you for the pull request, I included some of the suggestions in the latest code in master, and others have made further refinements. Can you check the latest master...

Hoping the other changes meet the intended requirements. Closing for now.

Does someone in the community that uses Active Job have a solution they want to submit as a PR? Or, even just submit a PR with a failing test for...

It is unlikely just adding "SemanticLogger::Loggable in a class derived from ActionCable::Connection::Base" would work for Rails. It usually requires far more extensive patching. Start here to see the patches for...

This should achieve the same result for your environment: ~~~ruby RailsSemanticLogger::ActiveRecord::LogSubscriber.logger = ::ActiveRecord::Base.logger ~~~

Try this config: ~~~ruby config.log_level = :info config.semantic_logger.add_appender(io: $stdout, formatter: :color) ~~~