I have a gem which I wrote and I use it inside my rails application.
I want to write to rails logger from my gem but obviously the standard rails logger doesn't exist there.
What is the right way to achieve what I want to do?
|
I have a gem which I wrote and I use it inside my rails application. I want to write to rails logger from my gem but obviously the standard rails logger doesn't exist there. What is the right way to achieve what I want to do?
| ||||
|
feedback
|
|
While you should be able to use You can default it to something that just writes to stdout, in a rails app you can set | |||
|
feedback
|
|
As Frederick Cheung says, you should use a namespaced logger for your gem: Then set it to the Rails logger in a Railtie so that your gem works nicely both inside and outside of Rails.
| |||
|
feedback
|