From: Joel Rosdahl Date: Wed, 8 Aug 2012 14:05:17 +0000 (+0200) Subject: Include ccache version in the debug log X-Git-Tag: v3.2~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3849150ff14167261adea6b1a802497a7728c134;p=thirdparty%2Fccache.git Include ccache version in the debug log --- diff --git a/ccache.c b/ccache.c index f212f23eb..612d5939a 100644 --- a/ccache.c +++ b/ccache.c @@ -2168,7 +2168,8 @@ initialize(void) exitfn_add_nullary(stats_flush); exitfn_add_nullary(clean_up_tmp_files); - cc_log("=== CCACHE STARTED ========================================="); + cc_log("=== CCACHE %s STARTED =========================================", + CCACHE_VERSION); if (conf->umask != UINT_MAX) { umask(conf->umask);