-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestNTEventLog.cpp
More file actions
46 lines (36 loc) · 1.07 KB
/
Copy pathtestNTEventLog.cpp
File metadata and controls
46 lines (36 loc) · 1.07 KB
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
// testNTEventLog.cpp : Derived from testPattern.cpp.
//
#include "log4cpp/Portability.hh"
#ifdef WIN32
#include <windows.h>
#endif
#ifdef LOG4CPP_HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
#include "log4cpp/Category.hh"
#include "log4cpp/Appender.hh"
#include "log4cpp/NTEventLogAppender.hh"
#include "log4cpp/Priority.hh"
int main(int argc, char* argv[])
{
log4cpp::Appender* appender =
new log4cpp::NTEventLogAppender("default", "testNTEventLog");
log4cpp::Category& sub1 =
log4cpp::Category::getInstance(std::string("sub1"));
sub1.addAppender(appender);
sub1.setPriority(log4cpp::Priority::DEBUG);
sub1.emerg("sub1 emerg");
sub1.fatal("sub1 fatal");
sub1.alert("sub1 alert");
sub1.crit("sub1 crit");
sub1.error("sub1 error");
sub1.warn("sub1 warn");
sub1.notice("sub1 notice");
sub1.info("sub1 info");
sub1.debug("sub1 debug");
sub1.log(log4cpp::Priority::NOTSET, "sub1 notset");
sub1.log(log4cpp::Priority::ERROR, "sub1 error");
log4cpp::Category::shutdown();
return 0;
}