Skip to content

Commit

Permalink
[FrameworkBundle] Treat all log messages >=ERR as errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed May 2, 2011
1 parent fc3be8a commit 25d7009
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
@@ -1,7 +1,8 @@
<ol class="traces">
{% for log in logs %}
<li>
{% if 'ERR' == log.priorityName %}
{% if 'EMERG' == log.priorityName or 'ERR' == log.priorityName or 'CRIT' == log.priorityName
or 'ALERT' == log.priorityName or 'ERROR' == log.priorityName or 'CRITICAL' == log.priorityName %}
<em>{{ log.priorityName }}</em>
{% else %}
{{ log.priorityName }}
Expand Down
11 changes: 8 additions & 3 deletions src/Symfony/Bundle/MonologBundle/Logger/DebugHandler.php
Expand Up @@ -11,6 +11,7 @@

namespace Symfony\Bundle\MonologBundle\Logger;

use Monolog\Logger;
use Monolog\Handler\TestHandler;
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;

Expand Down Expand Up @@ -43,8 +44,12 @@ public function getLogs()
*/
public function countErrors()
{
return isset($this->recordsByLevel[\Monolog\Logger::ERROR])
? count($this->recordsByLevel[\Monolog\Logger::ERROR])
: 0;
$cnt = 0;
foreach (array(Logger::ERROR, Logger::CRITICAL, Logger::ALERT) as $level) {
if (isset($this->recordsByLevel[$level])) {
$cnt += count($this->recordsByLevel[$level])
}
}
return $cnt;
}
}

0 comments on commit 25d7009

Please sign in to comment.