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:
@@ -58,8 +58,10 @@ class RavenHandler extends AbstractProcessingHandler
|
|||||||
$this->ravenClient->captureException($record['context']['context']);
|
$this->ravenClient->captureException($record['context']['context']);
|
||||||
} else {
|
} else {
|
||||||
$this->ravenClient->captureMessage(
|
$this->ravenClient->captureMessage(
|
||||||
$record['formatted']['message'], $params = $record,
|
$record['formatted']['message'],
|
||||||
$record['formatted']['level'], $stack = true
|
$params = $record,
|
||||||
|
$level = $record['formatted']['level'],
|
||||||
|
$stack = true
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user