From: Kalle Wallin Date: Sat, 3 Jul 2004 13:22:58 +0000 (+0000) Subject: Cleaned up the conf debug code X-Git-Tag: v0.12_alpha1~477 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0f0719248b95bdc26b4c18b0b967140d82871a1a;p=ncmpc.git Cleaned up the conf debug code git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1781 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- diff --git a/src/conf.c b/src/conf.c index 8cf4f5b..4def2c8 100644 --- a/src/conf.c +++ b/src/conf.c @@ -553,13 +553,8 @@ read_rc_file(char *filename, options_t *options) fprintf(stderr, _("Unknown configuration parameter: %s\n"), name); -#ifdef DEBUG - printf( " %s = %s %s\n", - name, - value, - match_found ? "" : "- UNKNOWN SETTING!" ); -#endif - + D("conf> %s = %s %s\n", name, value, + match_found ? "" : "- UNKNOWN SETTING!" ); } } }