pulse00/monolog-parser

A parser for monolog log entries

0.0.3 2015-05-21 16:25 UTC

This package is not auto-updated.

Last update: 2024-04-13 12:43:14 UTC


README

Build Status Scrutinizer Code Quality

Latest Stable Version Total Downloads Latest Unstable Version License

A simple library for parsing monolog logfiles.

Installation

You can install the library using composer by adding pulse00/monolog-parser to your composer.json.

Usage

require_once 'path/to/vendor/autoload.php';
  
use Dubture\Monolog\Reader\LogReader;
    
$logFile = '/path/to/some/monolog.log';
$reader = new LogReader($logFile);
   
foreach ($reader as $log) {
    echo sprintf("The log entry was written at %s. \n", $log['date']->format('Y-m-d h:i:s'));
}
    
$lastLine = $reader[count($reader)-1];
echo sprintf("The last log entry was written at %s. \n", $lastLine['date']->format('Y-m-d h:i:s'));