aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Util/src/LoggingSubsystem.cpp
blob: c03028ad857451150c369703afdaff56905f21f0 (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
// 
// LoggingSubsystem.cpp 
// 
// Library: Util 
// Package: Application 
// Module:  LoggingSubsystem 
// 
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. 
// and Contributors. 
// 
// SPDX-License-Identifier:	BSL-1.0 
// 
 
 
#include "Poco/Util/LoggingSubsystem.h" 
#include "Poco/Util/LoggingConfigurator.h" 
#include "Poco/Util/Application.h" 
#include "Poco/Logger.h" 
 
 
using Poco::Logger; 
 
 
namespace Poco { 
namespace Util { 
 
 
LoggingSubsystem::LoggingSubsystem() 
{ 
} 
 
 
LoggingSubsystem::~LoggingSubsystem() 
{ 
} 
 
 
const char* LoggingSubsystem::name() const 
{ 
	return "Logging Subsystem"; 
} 
 
	 
void LoggingSubsystem::initialize(Application& app) 
{ 
	LoggingConfigurator configurator; 
	configurator.configure(&app.config()); 
	std::string logger = app.config().getString("application.logger", "Application"); 
	app.setLogger(Logger::get(logger)); 
} 
 
 
void LoggingSubsystem::uninitialize() 
{ 
} 
 
 
} } // namespace Poco::Util