From: wessels <> Date: Sat, 1 Nov 1997 06:37:38 +0000 (+0000) Subject: tone down foo has callback warning X-Git-Tag: SQUID_3_0_PRE1~4591 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb83d48aac1ca9151a115e4110b55a8f0b4b0eba;p=thirdparty%2Fsquid.git tone down foo has callback warning --- diff --git a/src/store.cc b/src/store.cc index 10c15e9119..fca04b7b25 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.331 1997/10/31 17:06:13 wessels Exp $ + * $Id: store.cc,v 1.332 1997/10/31 23:37:38 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -751,7 +751,7 @@ storeUnregister(StoreEntry * e, void *data) } if ((callback = sc->callback)) { /* callback with ssize = -1 to indicate unexpected termination */ - debug(20, 1) ("WARNING: store_client for %s has a callback\n", e->url); + debug(20, 3) ("storeUnregister: store_client for %s has a callback\n", e->url); sc->callback = NULL; callback(sc->callback_data, sc->copy_buf, -1); }