You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
|
|
#include <log4cplus/logger.h>
|
|
#include <log4cplus/configurator.h>
|
|
#include <log4cplus/helpers/loglog.h>
|
|
#include <log4cplus/helpers/stringhelper.h>
|
|
#include <log4cplus/helpers/sleep.h>
|
|
#include <log4cplus/loggingmacros.h>
|
|
|
|
using namespace std;
|
|
using namespace log4cplus;
|
|
using namespace log4cplus::helpers;
|
|
|
|
|
|
Logger log_1 = Logger::getInstance(LOG4CPLUS_TEXT("test.log_1"));
|
|
Logger log_2 = Logger::getInstance(LOG4CPLUS_TEXT("test.log_2"));
|
|
Logger log_3 = Logger::getInstance(LOG4CPLUS_TEXT("test.log_3"));
|
|
|
|
|
|
void
|
|
printMsgs(Logger& logger)
|
|
{
|
|
LOG4CPLUS_TRACE_METHOD(logger, LOG4CPLUS_TEXT("printMsgs()"));
|
|
LOG4CPLUS_DEBUG(logger, "printMsgs()");
|
|
LOG4CPLUS_INFO(logger, "printMsgs()");
|
|
LOG4CPLUS_WARN(logger, "printMsgs()");
|
|
LOG4CPLUS_ERROR(logger, "printMsgs()");
|
|
}
|
|
|
|
|
|
|
|
int
|
|
main()
|
|
{
|
|
tcout << LOG4CPLUS_TEXT("Entering main()...") << endl;
|
|
LogLog::getLogLog()->setInternalDebugging(true);
|
|
Logger root = Logger::getRoot();
|
|
try
|
|
{
|
|
ConfigureAndWatchThread configureThread(
|
|
LOG4CPLUS_TEXT("log4cplus.properties"), 5 * 1000);
|
|
|
|
LOG4CPLUS_WARN(root, "Testing....");
|
|
|
|
for(int i=0; i<100; ++i) {
|
|
printMsgs(log_1);
|
|
printMsgs(log_2);
|
|
printMsgs(log_3);
|
|
log4cplus::helpers::sleep(1);
|
|
}
|
|
}
|
|
catch(...) {
|
|
tcout << LOG4CPLUS_TEXT("Exception...") << endl;
|
|
LOG4CPLUS_FATAL(root, "Exception occured...");
|
|
}
|
|
|
|
tcout << LOG4CPLUS_TEXT("Exiting main()...") << endl;
|
|
return 0;
|
|
}
|
|
|