Removed erroneously introduced character.

This commit is contained in:
Dayson Pais 2014-05-26 21:53:28 +05:30
parent 65288538e3
commit b242280ecd

View File

@ -241,7 +241,7 @@ class Resque_Worker
$job->perform(); $job->perform();
} }
catch(Exception $e) { catch(Exception $e) {
g $this->logger->log(Psr\Log\LogLevel::CRITICAL, '{job} has failed {stack}', array('job' => $job, 'stack' => (string)$e); $this->logger->log(Psr\Log\LogLevel::CRITICAL, '{job} has failed {stack}', array('job' => $job, 'stack' => (string)$e);
$job->fail($e); $job->fail($e);
return; return;
} }