/usr/include/log4cpp/RollingFileAppender.hh is in liblog4cpp5-dev 1.0-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /*
* RollingFileAppender.hh
*
* See the COPYING file for the terms of usage and distribution.
*/
#ifndef _LOG4CPP_ROLLINGFILEAPPENDER_HH
#define _LOG4CPP_ROLLINGFILEAPPENDER_HH
#include <log4cpp/Portability.hh>
#include <log4cpp/FileAppender.hh>
#include <string>
#include <stdarg.h>
namespace log4cpp {
/**
RollingFileAppender is a FileAppender that rolls over the logfile once
it has reached a certain size limit.
@since 0.3.1
**/
class LOG4CPP_EXPORT RollingFileAppender : public FileAppender {
public:
RollingFileAppender(const std::string& name,
const std::string& fileName,
size_t maxFileSize = 10*1024*1024,
unsigned int maxBackupIndex = 1,
bool append = true,
mode_t mode = 00644);
virtual void setMaxBackupIndex(unsigned int maxBackups);
virtual unsigned int getMaxBackupIndex() const;
virtual void setMaximumFileSize(size_t maxFileSize);
virtual size_t getMaxFileSize() const;
virtual void rollOver();
protected:
virtual void _append(const LoggingEvent& event);
unsigned int _maxBackupIndex;
size_t _maxFileSize;
};
}
#endif // _LOG4CPP_ROLLINGFILEAPPENDER_HH
|