You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Monolog ships with a set of [processors](https://github.com/Seldaek/monolog/tree/master/src/Monolog/Processor), these will generate additional data and populate the 'extra' field.
327
+
I've also added a couple of example processors in this pacage under src/Processors.
328
+
To enable processors you can add them to the log config array:
You could also create your own custom processor, make sure they implement [Monolog\Processor\ProcessorInterface](https://github.com/Seldaek/monolog/blob/master/src/Monolog/Processor/ProcessorInterface.php).
329
342
@@ -415,6 +428,8 @@ You also need to make sure that all the needed basic config values for logtodb i
415
428
* or just add all your log-to-db options in your applications config/logging.php file (probably easiest). Just follow the
416
429
configuration example above under the [configuration](#configuration) section.
417
430
431
+
Since we are using Lumen we need to specify the config and service providers in the "bootstrap/app.php" file.
0 commit comments