ソースを参照

Merge pull request #112 from boombatower/documentation

Correct handler comment.
Jordi Boggiano 13 年 前
コミット
e5bf7ba5d1
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/Monolog/Logger.php

+ 1 - 1
src/Monolog/Logger.php

@@ -194,7 +194,7 @@ class Logger
             'datetime' => \DateTime::createFromFormat('U.u', sprintf('%.6F', microtime(true)))->setTimeZone(self::$timezone),
             'extra' => array(),
         );
-        // check if any message will handle this message
+        // check if any handler will handle this message
         $handlerKey = null;
         foreach ($this->handlers as $key => $handler) {
             if ($handler->isHandling($record)) {