1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 13:16:39 +02:00

Include context data as extra data sent to Rollbar.

This commit is contained in:
Paul Statezny
2014-03-06 14:18:57 -07:00
parent 2bb729d60b
commit 595c6fc8af

View File

@@ -42,7 +42,7 @@ class RollbarHandler extends AbstractProcessingHandler
$this->rollbarNotifier->report_message(
$record['message'],
$record['level_name'],
$record['extra']
array_merge($record['context'], $record['extra'])
);
}
}