15
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Kanrikogaku Kenkyusho, Ltd. - Initial contribution
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
// Protection against nested includes
|
|
20 |
#ifndef LOGDEF_H
|
|
21 |
#define LOGDEF_H
|
|
22 |
|
|
23 |
//#define ENABLE_LOGGING
|
|
24 |
//#define LOG_TO_FILE
|
|
25 |
|
|
26 |
/*
|
|
27 |
#ifdef _DEBUG
|
|
28 |
// logging is always enabled in debug builds
|
|
29 |
#define ENABLE_LOGGING
|
|
30 |
#else
|
|
31 |
// manually enable in release builds
|
|
32 |
//#define ENABLE_LOGGING
|
|
33 |
#endif // _DEBUG
|
|
34 |
|
|
35 |
#define LOG_TO_FILE
|
|
36 |
*/
|
|
37 |
|
|
38 |
#endif // LOGDEF_H
|
|
39 |
|
|
40 |
// End of File
|