Similar to 'rails server' that prints every sql query executed I would like to do the same for rake tasks.
What is the best way to achieve that?
|
Similar to 'rails server' that prints every sql query executed I would like to do the same for rake tasks. What is the best way to achieve that? |
|||
|
|
|
Depending on your environment, Rake will log sql queries just like any Rails process will & in the same logfile. So on your dev box, check your log/development.log file - it will contain your Rake task's queries. If you want queries logged in production, set the log level in your Rake task to DEBUG, and make sure the rake task depends on :environment.
|
|||
|
|