Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #112 from boombatower/documentation
Correct handler comment.
  • Loading branch information
Seldaek committed Sep 8, 2012
2 parents a929570 + 48729c0 commit e5bf7ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Monolog/Logger.php
Expand Up @@ -194,7 +194,7 @@ public function addRecord($level, $message, array $context = array())
'datetime' => \DateTime::createFromFormat('U.u', sprintf('%.6F', microtime(true)))->setTimeZone(self::$timezone), 'datetime' => \DateTime::createFromFormat('U.u', sprintf('%.6F', microtime(true)))->setTimeZone(self::$timezone),
'extra' => array(), 'extra' => array(),
); );
// check if any message will handle this message // check if any handler will handle this message
$handlerKey = null; $handlerKey = null;
foreach ($this->handlers as $key => $handler) { foreach ($this->handlers as $key => $handler) {
if ($handler->isHandling($record)) { if ($handler->isHandling($record)) {
Expand Down

0 comments on commit e5bf7ba

Please sign in to comment.