aboutsummaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/log.h b/src/log.h
index 9112658b..9b4ceaee 100644
--- a/src/log.h
+++ b/src/log.h
@@ -27,22 +27,16 @@
extern int logLevel;
-#define ERROR(x, arg...) do { \
- myfprintf(stderr, x , ##arg); \
- } while(0);
+#define ERROR(x, arg...) myfprintf(stderr, x , ##arg)
-#define LOG(x, arg...) do { \
- myfprintf(stdout, x , ##arg); \
- } while(0);
+#define LOG(x, arg...) myfprintf(stdout, x , ##arg)
-#define SECURE(x, arg...) do { \
- if(logLevel>=LOG_LEVEL_SECURE) myfprintf(stdout, x , ##arg); \
- } while(0);
+#define SECURE(x, arg...) if(logLevel>=LOG_LEVEL_SECURE) \
+ myfprintf(stdout, x , ##arg)
-#define DEBUG(x, arg...) do { \
- if(logLevel>=LOG_LEVEL_DEBUG) myfprintf(stdout, x , ##arg); \
- } while(0);
+#define DEBUG(x, arg...) if(logLevel>=LOG_LEVEL_DEBUG) \
+ myfprintf(stdout, x , ##arg)
void initLog();