File: testNTEventLog.cpp

package info (click to toggle)
log4cpp 0.3.5-rc3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,000 kB
  • ctags: 1,111
  • sloc: sh: 8,628; cpp: 4,743; ansic: 819; makefile: 321
file content (46 lines) | stat: -rw-r--r-- 1,095 bytes parent folder | download | duplicates (8)
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
// 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;
}