1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-23 01:26:11 +02:00

Allow to set custom event_id [LEGACY] (#930)

* +allow to set a custom event_id as an extra parameter instead of letting Raven generate a UUIDv4

* +CS

* +CS

* +verbose array syntax because of PHP 5.3 support
This commit is contained in:
Tim Strijdhorst
2017-03-12 17:46:54 +01:00
committed by Jordi Boggiano
parent cc5f1eb34d
commit e6b05c9173
2 changed files with 4 additions and 2 deletions

View File

@@ -216,7 +216,7 @@ class RavenHandler extends AbstractProcessingHandler
*/
protected function getExtraParameters()
{
return array('checksum', 'release');
return array('checksum', 'release', 'event_id');
}
/**