From: wessels <> Date: Wed, 4 Feb 1998 14:18:23 +0000 (+0000) Subject: debug msg fix X-Git-Tag: SQUID_3_0_PRE1~4188 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4de1160f42d649e0b02409a6547c82dd070b7924;p=thirdparty%2Fsquid.git debug msg fix --- diff --git a/src/store_rebuild.cc b/src/store_rebuild.cc index 0c68b65049..19dc78a691 100644 --- a/src/store_rebuild.cc +++ b/src/store_rebuild.cc @@ -181,7 +181,7 @@ storeRebuildFromSwapLog(rebuild_dir * d) /* load a number of objects per invocation */ for (count = 0; count < d->speed; count++) { if (fread(&s, ss, 1, d->log) != 1) { - debug(20, 1) ("Done reading cache_dir #%d swaplog (%d entries)\n", + debug(20, 1) ("Done reading Cache Dir #%d swaplog (%d entries)\n", d->dirn, d->n_read); fclose(d->log); d->log = NULL; @@ -625,8 +625,8 @@ storeRebuildStart(void) RebuildState.rebuild_dir = d; if (!clean) RebuildState.need_to_validate = 1; - debug(20, 1) ("Rebuilding storage (%s)\n", - clean ? "CLEAN" : "DIRTY"); + debug(20, 1) ("Rebuilding storage in Cache Dir #%d (%s)\n", + i, clean ? "CLEAN" : "DIRTY"); } eventAdd("storeRebuild", storeRebuildADirectory, NULL, 0); }