I'd like Symfony to log the Doctrine SQL queries that one of my tasks executes to a log file, much like the web debug toolbar does for non-cli code. Is this possible?
- Symfony version: 1.4.12
 - Doctrine version: 1.2.4
 
Here's some example code for a task. I would like the SELECT query to be logged in a similar way to how it would be if it was called from an action.
class exampleTask extends sfBaseTask
{
        protected function configure()
        {
                parent::configure();
                $this->namespace        = 'test';
                $this->name             = 'example';
        }
        protected function execute($arguments = array(), $options = array())
        {
                $databaseManager = new sfDatabaseManager($this->configuration);
                $users = Doctrine_Core::getTable('SfGuardUser')
                        ->createQuery('s')
                        ->select('s.first_name')
                        ->execute();
                foreach($users as $user) {
                        print $user->getFirstName()."\n";
                }
        }
}