I have a padrino install that is using datamapper and logging queries to a file. This is working fine when browsing my application. But queries are not logged if executed inside a rake file. Why?

This is how the task is defined:

# lib/tasks/example.rake
task :example => :environment do
  players = Player.all #Player is a datamapper object
  puts players.first.to_s
end

I also added this line to /config/boot.rb

Padrino::Logger::Config[:development] = { :log_level => :devel, :stream => :to_file }

And this line is called in /config/database.rb

DataMapper.logger = logger

And this is how I'm executing the script

$ padrino rake example
link|improve this question

80% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Invoke rake with:

PADRINO_LOG_LEVEL=development padrino rake my:task
link|improve this answer
That works, but is DataMapper.finalize called after the task? or should I add it to the rake file? – marcosdsanchez Nov 10 '11 at 17:01
padrino rake call config/boot so will be invoked before task. – DAddYE Nov 10 '11 at 17:18
Thanks. I added this line PADRINO_LOG_LEVEL= PADRINO_ENV to config/boot . Shouldn't it be in there by default?? – marcosdsanchez Nov 10 '11 at 17:42
Can be great when like you we use :to_file but with :stdout can be tricky see a decent output. Btw feel free to open an issue on github tracker. – DAddYE Nov 10 '11 at 17:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.