summaryrefslogtreecommitdiff
path: root/orkbasecxx/LogManager.h
blob: 69f2b10444a839bdeffe186a1eb77d96c6dec8dc (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#ifndef __LOGMANAGER_H__
#define __LOGMANAGER_H__

#include <log4cxx/logger.h>
#include "ace/Singleton.h"
#include "dll.h"
#include "OrkBase.h"

using namespace log4cxx;


class DLL_IMPORT_EXPORT_ORKBASE OrkLogManager
{
public:
	static OrkLogManager* Instance();

	void Initialize();
	void Shutdown();

	LoggerPtr rootLog;
	LoggerPtr topLog;
	LoggerPtr immediateProcessingLog;
	LoggerPtr batchProcessingLog;
	LoggerPtr tapeFileNamingLog;
	LoggerPtr portLog;
	LoggerPtr fileLog;
	LoggerPtr reportingLog;
	LoggerPtr configLog;
	LoggerPtr tapelistLog;
	LoggerPtr tapeLog;
	LoggerPtr clientLog;

private:
	static OrkLogManager m_orkLogManager;
};

#define LOG (*OrkLogManager::Instance())

#endif