forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simdebug.h
76 lines (54 loc) · 1.38 KB
/
simdebug.h
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Copyright (c) 1997 - 2001 Hj. Malthaner
*
* This file is part of the Simutrans project under the artistic license.
* (see license.txt)
*/
#ifndef simdebug_h
#define simdebug_h
// do not check assertions
//#define NDEBUG 1
// check assertions
//#undef NDEBUG
//#define NDEBUG
#include <assert.h>
#include "utils/log.h"
/**
* Logger instance, this is a globally exported object.
* @author Hj. Malthaner
*/
extern log_t *dbg;
/**
* Inits logging facility.
* @author Hj. Malthaner
*/
void init_logging(const char *logname, bool force_flush, bool log_debug, const char *greeting, const char* syslogtag );
#ifdef MSG_LEVEL
#if MSG_LEVEL >= 4
#define DBG_DEBUG4 dbg->debug
#define DBG_MESSAGE dbg->message
#define DBG_DEBUG dbg->message
#elif MSG_LEVEL == 3
#define DBG_DEBUG4(i,...) ;
#define DBG_MESSAGE dbg->message
#define DBG_DEBUG dbg->message
#elif MSG_LEVEL >= 1
#define DBG_DEBUG4(i,...) ;
#define DBG_MESSAGE(i,...) ;
#define DBG_DEBUG dbg->message
#endif
#elif defined(DEBUG)
// default level in undefinded
#define MSG_LEVEL (3)
//#define DBG_MESSAGE(i,...) dbg->message(i,__VA_ARGS__)
//#define DBG_DEBUG(i,...) dbg->message(i,__VA_ARGS__)
#define DBG_MESSAGE dbg->message
#define DBG_DEBUG dbg->message
#define DBG_DEBUG4 dbg->debug
#else
// nothing to debug -> then ignore
#define DBG_DEBUG4(i,...) ;
#define DBG_MESSAGE(i,...) ;
#define DBG_DEBUG(i,...) ;
#endif
#endif