Class LoggerAppenderRollingFile

Description

LoggerAppenderRollingFile extends LoggerAppenderFile to backup the log files when they reach a certain size.

LoggerAppenderRollingFile extends LoggerAppenderFile to backup the log files when they reach a certain size. Parameters are $maxFileSize, $maxBackupIndex

Located in Program_Root/src/log4php/appenders/LoggerAppenderRollingFile.php (line 31)

LoggerAppenderSkeleton
   |
   --LoggerAppenderFile
      |
      --LoggerAppenderRollingFile
Variable Summary
integer $maxBackupIndex
integer $maxFileSize
Method Summary
LoggerAppenderRollingFile LoggerAppenderRollingFile (mixed $name)
void append (mixed $event)
void rollOver ()
void setMaxBackupIndex (mixed $maxBackups)
void setMaxFileSize (mixed $value)
void setMaximumFileSize (mixed $maxFileSize)
Variables
integer $maxBackupIndex = 1 (line 58)

Set the maximum number of backup files to keep around.

Set the maximum number of backup files to keep around. The MaxBackupIndex option determines how many backup files are kept before the oldest is erased. This option takes a positive integer value. If set to zero, then there will be no backup files and the log file will be truncated when it reaches MaxFileSize.

There is one backup file by default.

integer $maxFileSize = 10485760 (line 45)

Set the maximum size that the output file is allowed to reach before being rolled over to backup files.

Set the maximum size that the output file is allowed to reach before being rolled over to backup files. In configuration files, the MaxFileSize option takes an long integer in the range 0 - 2^63. You can specify the value with the suffixes "KB", "MB" or "GB" so that the integer is interpreted being expressed respectively in kilobytes, megabytes or gigabytes. For example, the value "10KB" will be interpreted as 10240.

The default maximum file size is 10MB.

Inherited Variables

Inherited from LoggerAppenderFile

LoggerAppenderFile::$append
LoggerAppenderFile::$file
LoggerAppenderFile::$fp
LoggerAppenderFile::$requiresLayout

Inherited from LoggerAppenderSkeleton

LoggerAppenderSkeleton::$closed
LoggerAppenderSkeleton::$errorHandler
LoggerAppenderSkeleton::$headFilter
LoggerAppenderSkeleton::$layout
LoggerAppenderSkeleton::$name
LoggerAppenderSkeleton::$tailFilter
LoggerAppenderSkeleton::$threshold
Methods
Constructor LoggerAppenderRollingFile (line 63)

The default constructor simply calls its parents constructor.

The default constructor simply calls its parents constructor.

LoggerAppenderRollingFile LoggerAppenderRollingFile (mixed $name)
append (line 172)
void append (mixed $event)

Redefinition of:
LoggerAppenderFile::append()
getMaxBackupIndex (line 71)

Returns the value of the MaxBackupIndex option.

Returns the value of the MaxBackupIndex option.

void getMaxBackupIndex ()
getMaximumFileSize (line 79)

Get the maximum size that the output file is allowed to reach before being rolled over to backup files.

Get the maximum size that the output file is allowed to reach before being rolled over to backup files.

void getMaximumFileSize ()
rollOver (line 92)

Implements the usual roll over behaviour.

Implements the usual roll over behaviour. If MaxBackupIndex is positive, then files File.1, ..., File.MaxBackupIndex -1 are renamed to File.2, ..., File.MaxBackupIndex. Moreover, File is renamed File.1 and closed. A new File is created to receive further log output.

If MaxBackupIndex is equal to zero, then the File is truncated with no backup files created.

void rollOver ()
setMaxBackupIndex (line 132)

Set the maximum number of backup files to keep around.

Set the maximum number of backup files to keep around. The MaxBackupIndex option determines how many backup files are kept before the oldest is erased. This option takes a positive integer value. If set to zero, then there will be no backup files and the log file will be truncated when it reaches MaxFileSize.

void setMaxBackupIndex (mixed $maxBackups)
setMaxFileSize (line 158)

Set the maximum size that the output file is allowed to reach before being rolled over to backup files.

Set the maximum size that the output file is allowed to reach before being rolled over to backup files. In configuration files, the MaxFileSize option takes an long integer in the range 0 - 2^63. You can specify the value with the suffixes "KB", "MB" or "GB" so that the integer is interpreted being expressed respectively in kilobytes, megabytes or gigabytes. For example, the value "10KB" will be interpreted as 10240.

void setMaxFileSize (mixed $value)
setMaximumFileSize (line 143)

Set the maximum size that the output file is allowed to reach before being rolled over to backup files.

Set the maximum size that the output file is allowed to reach before being rolled over to backup files.

void setMaximumFileSize (mixed $maxFileSize)

Inherited Methods

Inherited From LoggerAppenderFile

LoggerAppenderFile::LoggerAppenderFile()
LoggerAppenderFile::activateOptions()
LoggerAppenderFile::append()
LoggerAppenderFile::close()
LoggerAppenderFile::closeFile()
LoggerAppenderFile::getAppend()
LoggerAppenderFile::getFile()
LoggerAppenderFile::reset()
LoggerAppenderFile::setAppend()
LoggerAppenderFile::setFile()

Inherited From LoggerAppenderSkeleton

LoggerAppenderSkeleton::LoggerAppenderSkeleton()
LoggerAppenderSkeleton::activateOptions()
LoggerAppenderSkeleton::addFilter()
LoggerAppenderSkeleton::append()
LoggerAppenderSkeleton::clearFilters()
LoggerAppenderSkeleton::close()
LoggerAppenderSkeleton::doAppend()
LoggerAppenderSkeleton::finalize()
LoggerAppenderSkeleton::getErrorHandler()
LoggerAppenderSkeleton::getFilter()
LoggerAppenderSkeleton::getFirstFilter()
LoggerAppenderSkeleton::getLayout()
LoggerAppenderSkeleton::getName()
LoggerAppenderSkeleton::getThreshold()
LoggerAppenderSkeleton::isAsSevereAsThreshold()
LoggerAppenderSkeleton::requiresLayout()
LoggerAppenderSkeleton::setErrorHandler()
LoggerAppenderSkeleton::setLayout()
LoggerAppenderSkeleton::setName()
LoggerAppenderSkeleton::setThreshold()

Documentation generated on Wed, 27 Aug 2003 18:11:33 +0200 by phpDocumentor 1.2.2