From: Richard Russon Date: Fri, 31 Mar 2017 16:45:11 +0000 (+0100) Subject: add full neomutt version to log startup X-Git-Tag: neomutt-20170414~16^2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=556c9d04bf120ee6485c99a5dcec25f41fa730ed;p=neomutt add full neomutt version to log startup Changes: NeoMutt/20170306 (1.8.0) debugging at level 2 to Neomutt 20170306-98-bf1d78 (1.8.0) debugging at level 2 --- diff --git a/init.c b/init.c index 27f964318..8129aff0d 100644 --- a/init.c +++ b/init.c @@ -3688,8 +3688,8 @@ static void start_debug (void) if ((debugfile = safe_fopen(buf, "w")) != NULL) { setbuf (debugfile, NULL); /* don't buffer the debugging output! */ - mutt_debug (1, "NeoMutt/%s (%s) debugging at level %d\n", - PACKAGE_VERSION, MUTT_VERSION, debuglevel); + mutt_debug (1, "NeoMutt %s%s (%s) debugging at level %d\n", + PACKAGE_VERSION, GitVer, MUTT_VERSION, debuglevel); } } #endif