1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-18 10:51:19 +02:00

Put args one per line, as suggested by @Seldaek in

https://github.com/Seldaek/monolog/pull/76/files#r737313
This commit is contained in:
Marc Abramowitz
2012-04-26 11:16:25 -07:00
parent 6d158110d5
commit f6e75e44cb

View File

@@ -58,8 +58,10 @@ class RavenHandler extends AbstractProcessingHandler
$this->ravenClient->captureException($record['context']['context']);
} else {
$this->ravenClient->captureMessage(
$record['formatted']['message'], $params = $record,
$record['formatted']['level'], $stack = true
$record['formatted']['message'],
$params = $record,
$level = $record['formatted']['level'],
$stack = true
);
}
}