Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Package for viewing "pretty" monolog files

Is there a package that is used for parsing monolog files and displaying them in a "pretty" HTML format with filtering for log level, etc?

like image 711
Steven Musumeche Avatar asked Apr 26 '14 03:04

Steven Musumeche


2 Answers

I am the developer of the mentioned monolog-viewer, thanks Carlton for recommending it!

It does allow you to filter by log level and you can either install it once and access log files from multiple domains via FTP or install it on the same domain as the application and access the files locally.

If you think a feature is missing, feel free to open a GitHub issue and I'll see what I can do.

like image 125
mpbzh Avatar answered Oct 08 '22 17:10

mpbzh


I haven't tried it yet but https://github.com/Syonix/monolog-viewer seems like an attractive solution.

If you are willing to change the handler that you have configured Monolog to use you could consider pushing messages to a 3rd party. They would present the logs in a pretty format with good filtering functionality. It's likely that these services may charge you for the service though.

https://github.com/Seldaek/monolog#log-specific-servers-and-networked-logging

like image 7
Carlton Avatar answered Oct 08 '22 15:10

Carlton