mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-18 19:01:31 +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:
@@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user