In rails I want to log some information in a different log file and not the standard development.log or production.log. I want to do this logging from a model class.
|
You can create a Logger object yourself from inside any model. Just pass the file name to the constructor and use the object like the usual Rails
Here I used a class attribute to memoize the logger. This way it won't be created for every single User object that gets created, but you aren't required to do that. Remember also that you can inject the |
|||||||||
|
|
A more complete solution would be to place the following in your The benefit is that you can prefix timestamps or severity to the logs automatically. This is accessible from anywhere in Rails, and looks neater by using the singleton pattern.
|
|||
|
|
|
A decent option that works for me is to just add a fairly plain class to your
then in your controller, or really almost anywhere that you could reference a model's class from within your rails app, i.e. anywhere you could do
|
|||
|
|
|
|||
|
|
|
I would suggest using Log4r gem for custom logging. Quoting description from its page:
|
|||
|
|