Real Time Logging

Comparing #4 with #5

Content

[...]
/**
* Use {@link error_log} facility to write out log entry
*/
if ( ! $_exclude )
error_log( $this->formatLogMessage( $_log[0], $_log[1], $_log[2], $_log[3] ), 3, $_logFile );
}
 
 
// Processed, clear!
 
$this->logs = null;

}
catch ( Exception $_ex )
{
error_log( __METHOD__ . ': Exception processing application logs: ' . $_ex->getMessage() );
}
[...]