From: Brandon Casey Date: Sat, 23 Feb 2008 02:12:58 +0000 (-0600) Subject: pack-objects: Print a message describing the number of threads for packing X-Git-Tag: v1.5.5-rc0~143^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6c723f5e6bc579e06a904874f1ceeb8ff2b5a17c;p=git.git pack-objects: Print a message describing the number of threads for packing Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c index 586ae1197..5a22f49ea 100644 --- a/builtin-pack-objects.c +++ b/builtin-pack-objects.c @@ -2239,6 +2239,9 @@ int cmd_pack_objects(int argc, const char **argv, const char *prefix) #ifdef THREADED_DELTA_SEARCH if (!delta_search_threads) /* --threads=0 means autodetect */ delta_search_threads = online_cpus(); + if (progress) + fprintf(stderr, "Using %d pack threads.\n", + delta_search_threads); #endif prepare_packed_git();