summaryrefslogtreecommitdiff
path: root/orkaudio/LogManager.h
blob: 25561477f471156549a7005d2f895cbffb3f8290 (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
/*
 * 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"

using namespace log4cxx;


class OrkLogManager
{
public:
	void Initialize();
	void Shutdown();

	LoggerPtr rootLog;
	LoggerPtr topLog;
	LoggerPtr immediateProcessingLog;
	LoggerPtr batchProcessingLog;
	LoggerPtr portLog;
	LoggerPtr fileLog;
	LoggerPtr reportingLog;
	LoggerPtr configLog;
	LoggerPtr tapelistLog;
};

typedef ACE_Singleton<OrkLogManager, ACE_Thread_Mutex> OrkLogManagerSingleton;

#define LOG (*OrkLogManagerSingleton::instance())

#endif