aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-07-03 13:22:58 +0000
committerKalle Wallin <kaw@linux.se>2004-07-03 13:22:58 +0000
commit0f0719248b95bdc26b4c18b0b967140d82871a1a (patch)
tree3af446332e5e273746eeed52bda1fedc289955d7
parent1c515ff7791fd186dc82e80134ac47273c43d442 (diff)
downloadmpd-0f0719248b95bdc26b4c18b0b967140d82871a1a.tar.gz
mpd-0f0719248b95bdc26b4c18b0b967140d82871a1a.tar.xz
mpd-0f0719248b95bdc26b4c18b0b967140d82871a1a.zip
Cleaned up the conf debug code
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1781 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r--src/conf.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/conf.c b/src/conf.c
index 8cf4f5b3a..4def2c839 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!" );
}
}
}