blob: c38d5c5fa50a1bb374d3c5ce13bcdb4cf2aab56a (
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
|
/*
* This file is part of MXE. See LICENSE.md for licensing 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;
}
|