diff options
-rw-r--r-- | mpd-notification.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mpd-notification.c b/mpd-notification.c index e844eea..c9d1bff 100644 --- a/mpd-notification.c +++ b/mpd-notification.c @@ -37,7 +37,11 @@ int main(int argc, char ** argv) { struct mpd_connection * conn = NULL; struct mpd_song * song = NULL; - printf("%s: %s v%s (compiled: " __DATE__ ", " __TIME__ ")\n", argv[0], PROGNAME, VERSION); + printf("%s: %s v%s (compiled: " __DATE__ ", " __TIME__ +#if DEBUG + ", with debug output" +#endif + ")\n", argv[0], PROGNAME, VERSION); conn = mpd_connection_new(NULL, 0, 30000); |