#include <FileAppender.hh>
◆ FileAppender() [1/2]
log4cpp::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]
log4cpp::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()
log4cpp::FileAppender::~FileAppender |
( |
| ) |
|
|
virtual |
◆ _append()
void log4cpp::FileAppender::_append |
( |
const LoggingEvent & | event | ) |
|
|
protectedvirtual |
◆ close()
void log4cpp::FileAppender::close |
( |
| ) |
|
|
virtual |
◆ getAppend()
bool log4cpp::FileAppender::getAppend |
( |
| ) |
const |
|
virtual |
Gets the value of the 'append' option.
◆ getMode()
mode_t log4cpp::FileAppender::getMode |
( |
| ) |
const |
|
virtual |
◆ reopen()
bool log4cpp::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 log4cpp::AppenderSkeleton.
◆ setAppend()
void log4cpp::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()
void log4cpp::FileAppender::setMode |
( |
mode_t | mode | ) |
|
|
virtual |
◆ _fd
int log4cpp::FileAppender::_fd |
|
protected |
◆ _fileName
const std::string log4cpp::FileAppender::_fileName |
|
protected |
◆ _flags
int log4cpp::FileAppender::_flags |
|
protected |
◆ _mode
mode_t log4cpp::FileAppender::_mode |
|
protected |
The documentation for this class was generated from the following files: