#include <FileAppender.hh>
Definition at line 20 of file FileAppender.hh.
◆ FileAppender() [1/2]
FileAppender::FileAppender |
( |
const std::string & |
name, |
|
|
const std::string & |
fileName, |
|
|
bool |
append = true , |
|
|
mode_t |
mode = 00644 |
|
) |
| |
Constructs a FileAppender.
- Parameters
-
name | the name of the Appender. |
fileName | the name of the file to which the Appender has to log. |
append | whether the Appender has to truncate the file or just append to it if it already exists. Defaults to 'true'. |
mode | file mode to open the logfile with. Defaults to 00644. |
◆ FileAppender() [2/2]
FileAppender::FileAppender |
( |
const std::string & |
name, |
|
|
int |
fd |
|
) |
| |
Constructs a FileAppender to an already open file descriptor.
- Parameters
-
name | the name of the Appender. |
fd | the file descriptor to which the Appender has to log. |
◆ ~FileAppender()
virtual FileAppender::~FileAppender |
( |
| ) |
|
|
virtual |
◆ _append()
virtual void FileAppender::_append |
( |
const LoggingEvent & |
event | ) |
|
|
protectedvirtual |
◆ close()
virtual void FileAppender::close |
( |
| ) |
|
|
virtual |
◆ getAppend()
virtual bool FileAppender::getAppend |
( |
| ) |
const |
|
virtual |
Gets the value of the 'append' option.
◆ getMode()
virtual mode_t FileAppender::getMode |
( |
| ) |
const |
|
virtual |
◆ reopen()
virtual bool FileAppender::reopen |
( |
| ) |
|
|
virtual |
Reopens the logfile.
This can be useful for logfiles that are rotated externally, e.g. by logrotate. This method is a NOOP for FileAppenders that have been constructed with a file descriptor.
- Returns
- true if the reopen succeeded.
Reimplemented from AppenderSkeleton.
◆ setAppend()
virtual void FileAppender::setAppend |
( |
bool |
append | ) |
|
|
virtual |
Sets the append vs truncate flag.
NB. currently the FileAppender opens the logfile in the constructor. Therefore this method is too late to influence the first file opening. We'll need something similar to log4j's activateOptions().
- Parameters
-
append | false to truncate, true to append |
◆ setMode()
virtual void FileAppender::setMode |
( |
mode_t |
mode | ) |
|
|
virtual |
◆ _fd
◆ _fileName
const std::string FileAppender::_fileName |
|
protected |
◆ _flags
◆ _mode
The documentation for this class was generated from the following file: