projects
/
invirt/third/libt4.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
More cleaning
[invirt/third/libt4.git]
/
rpc
/
jsl_log.h
1
#ifndef jsl_log_h
2
#define jsl_log_h
3
4
enum dbcode {
5
JSL_DBG_OFF = 0,
6
JSL_DBG_1 = 1, // Critical
7
JSL_DBG_2 = 2, // Error
8
JSL_DBG_3 = 3, // Info
9
JSL_DBG_4 = 4, // Debugging
10
};
11
12
extern int JSL_DEBUG_LEVEL;
13
14
#define jsl_log(level,...) {if(JSL_DEBUG_LEVEL >= abs(level)) printf(__VA_ARGS__);}
15
16
#endif