From: Keith Packard Date: Thu, 18 Oct 2007 11:58:31 +0000 (-0700) Subject: Improve verbose messages from fc-cache. X-Git-Tag: 2.4.91~31 X-Git-Url: https://git.wh0rd.org/?p=fontconfig.git;a=commitdiff_plain;h=50124d1e484b84796abb7d8a6c1995edaff23e80 Improve verbose messages from fc-cache. fc-cache would say 'skipping: %d fonts, %d dirs' or 'caching: %d fonts, %d dirs', which could easily mislead the user. Add 'existing cache is valid' or 'new cache contents' to these messages to explain what it is doing. --- diff --git a/fc-cache/fc-cache.c b/fc-cache/fc-cache.c index 0415b54..7de952d 100644 --- a/fc-cache/fc-cache.c +++ b/fc-cache/fc-cache.c @@ -201,13 +201,13 @@ scanDirs (FcStrList *list, FcConfig *config, FcBool force, FcBool really_force, if (was_valid) { if (verbose) - printf ("skipping, %d fonts, %d dirs\n", + printf ("skipping, existing cache is valid: %d fonts, %d dirs\n", FcCacheNumFont (cache), FcCacheNumSubdir (cache)); } else { if (verbose) - printf ("caching, %d fonts, %d dirs\n", + printf ("caching, new cache contents: %d fonts, %d dirs\n", FcCacheNumFont (cache), FcCacheNumSubdir (cache)); if (!FcDirCacheValid (dir))