1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-22 09:06:10 +02:00

Removed second param from processors

This commit is contained in:
Jordi Boggiano
2011-04-08 13:53:30 +02:00
parent 24dc9e91d0
commit ea466fa848
3 changed files with 3 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ abstract class AbstractHandler implements HandlerInterface
if ($this->processors) {
foreach ($this->processors as $processor) {
$record = call_user_func($processor, $record, $this);
$record = call_user_func($processor, $record);
}
}