From: wessels <> Date: Tue, 15 Jul 1997 01:53:12 +0000 (+0000) Subject: remove temp debug() X-Git-Tag: SQUID_3_0_PRE1~4897 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d80e91c331b1ccf21691bfbf87dc1b643c980d4f;p=thirdparty%2Fsquid.git remove temp debug() --- diff --git a/src/store.cc b/src/store.cc index 0662e44434..769e328a83 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.266 1997/07/14 19:24:40 wessels Exp $ + * $Id: store.cc,v 1.267 1997/07/14 19:53:12 wessels Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -2745,7 +2745,6 @@ void storeRegisterAbort(StoreEntry * e, STABH * cb, void *data) { MemObject *mem = e->mem_obj; - debug(0, 0) ("storeRegisterAbort: %s\n", e->url); assert(mem); assert(mem->abort.callback == NULL); mem->abort.callback = cb; @@ -2756,7 +2755,6 @@ void storeUnregisterAbort(StoreEntry * e) { MemObject *mem = e->mem_obj; - debug(0, 0) ("storeUnregisterAbort: %s\n", e->url); assert(mem); mem->abort.callback = NULL; }