Revision #5 has been created by lucifurious on Feb 8, 2011, 2:11:35 AM with the memo:
Found a bug... yikes!
« previous (#4)
Changes
Title
unchanged
Real Time Logging
Category
unchanged
Tips
Yii version
unchanged
Tags
unchanged
Logging, extending, extensions, debug
Content
changed
[...]
/**
* 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() );
}[...]