blob: 460ee33e4f9ada0d9505c8a45144143d99160d97 (
plain)
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
|
/*
* This file is part of MXE.
* See index.html for further information.
*/
#include <cstdlib>
#include "log4cxx/logger.h"
#include "log4cxx/basicconfigurator.h"
#include "log4cxx/helpers/exception.h"
using namespace log4cxx;
using namespace log4cxx::helpers;
LoggerPtr logger(Logger::getLogger("MXE"));
int main(int argc, char **argv)
{
(void)argc;
(void)argv;
int result = EXIT_SUCCESS;
try
{
BasicConfigurator::configure();
LOG4CXX_INFO(logger, "Hello World!");
}
catch(Exception&)
{
result = EXIT_FAILURE;
}
return result;
}
|