diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-02-25 19:13:10 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-02-25 19:13:10 +0000 |
commit | e1c839cd5679f9b60f6b5e2bfd3a341b64463456 (patch) | |
tree | f7876c1600e29d38f3a574333e482e4651a3d382 /src/log.h | |
parent | 483d8873bd851abb0db066323e0512e1a22dc840 (diff) | |
download | mpd-e1c839cd5679f9b60f6b5e2bfd3a341b64463456.tar.gz mpd-e1c839cd5679f9b60f6b5e2bfd3a341b64463456.tar.xz mpd-e1c839cd5679f9b60f6b5e2bfd3a341b64463456.zip |
cleanup logging, need to be careful with SECURE and DEBUG
git-svn-id: https://svn.musicpd.org/mpd/trunk@58 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 18 |
1 files changed, 6 insertions, 12 deletions
@@ -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(); |