This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eZLog class very slightly modified from eZ Publish 4.3 */ | |
class eZLog { | |
const MAX_LOGROTATE_FILES = 3; | |
const MAX_LOGFILE_SIZE = 204800; // 200*1024 | |
/*! | |
Creates a new log object. | |
*/ | |
function eZLog( ) | |
{ | |
} |