monolog-parser icon indicating copy to clipboard operation
monolog-parser copied to clipboard

A simple library for parsing monolog logfiles.

Results 8 monolog-parser issues
Sort by recently updated
recently updated
newest added

Hi, Allowing both v1 and v2 of monolog will pass your tests. Fixes #12

Monolog allows writing multiline messages (with tracelog, for example). Here is an example: ```log [2020-03-25 16:27:13] report.ERROR: AMQP topology installation failed: stream_socket_client(): unable to connect to tcp://127.0.0.1:5672 (Connection refused) #0...

Hi there, do you have any plans to support Monolog 2.x

Updates PHPUnit to version 6.x and tests on officially supported PHP versions only (7.x).

Because the package will throw a fatal error without it.

Hello, i have tested your example and i get an error. my code ``` php $logFile = 'log/app.log'; $reader = new LogReader($logFile); foreach ($reader as $log) { echo sprintf("The log...

The following line is not parsed properly: ``` [2017-05-31 14:16:19] testing.WARNING: DB - Query to get user_id for inactive login; logging only username in the table [] {"file":"/home/pawel/project/app/Http/Controllers/Auth/LoginController.php","line":108,"class":"App\\Http\\Controllers\\Auth\\LoginController","function":"check"} ``` The...