#include <FileAppender.hh>
Inheritance diagram for log4cpp::FileAppender:
Public Methods | |
FileAppender (const std::string &name, const std::string &fileName, bool append=true, mode_t mode=00644) | |
Constructs a FileAppender. More... | |
FileAppender (const std::string &name, int fd) | |
Constructs a FileAppender to an already open file descriptor. More... | |
virtual | ~FileAppender () |
virtual bool | reopen () |
Reopens the logfile. More... | |
virtual void | close () |
Closes the logfile. More... | |
virtual void | setAppend (bool append) |
Sets the append vs truncate flag. More... | |
virtual bool | getAppend () const |
Gets the value of the 'append' option. More... | |
virtual void | setMode (mode_t mode) |
Sets the file open mode. More... | |
virtual mode_t | getMode () const |
Gets the file open mode. More... | |
Protected Methods | |
virtual void | _append (const LoggingEvent &event) |
Log in Appender specific way. More... | |
Protected Attributes | |
const std::string | _fileName |
int | _fd |
int | _flags |
mode_t | _mode |
|
Constructs a FileAppender.
|
|
Constructs a FileAppender to an already open file descriptor.
|
|
|
|
Log in Appender specific way. Subclasses of Appender should implement this method to perform actual logging.
Implements log4cpp::AppenderSkeleton. Reimplemented in log4cpp::RollingFileAppender. |
|
Closes the logfile.
Implements log4cpp::AppenderSkeleton. |
|
Gets the value of the 'append' option.
|
|
Gets the file open mode.
|
|
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.
Reimplemented from log4cpp::AppenderSkeleton. |
|
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().
|
|
Sets the file open mode.
|
|
|
|
|
|
|
|
|