blob: 2967169384a7d7b29095da69215aa7fe6295e7b0 [file] [log] [blame]
#include "com/foo/config.h"
#include <log4cxx/basicconfigurator.h>
#include <log4cxx/logmanager.h>
namespace com { namespace foo {
auto getLogger(const std::string& name) -> LoggerPtr {
using namespace log4cxx;
static struct log4cxx_initializer {
log4cxx_initializer() {
// Set up a simple configuration that logs on the console.
BasicConfigurator::configure();
}
~log4cxx_initializer() {
LogManager::shutdown();
}
} initAndShutdown;
return name.empty()
? LogManager::getRootLogger()
: LogManager::getLogger(name);
}
} } // namespace com::foo