From: rousskov <> Date: Thu, 12 Mar 1998 01:30:08 +0000 (+0000) Subject: - Incremented debugging level of "storeCheckCachable: NO: negative cached" X-Git-Tag: SQUID_3_0_PRE1~3865 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0dee43f28ada4554f668a3130e76702feb5f24a;p=thirdparty%2Fsquid.git - Incremented debugging level of "storeCheckCachable: NO: negative cached" --- diff --git a/src/store.cc b/src/store.cc index 3bf6c43f00..99322dc4bf 100644 --- a/src/store.cc +++ b/src/store.cc @@ -1,6 +1,6 @@ /* - * $Id: store.cc,v 1.392 1998/03/06 23:22:35 wessels Exp $ + * $Id: store.cc,v 1.393 1998/03/11 18:30:08 rousskov Exp $ * * DEBUG: section 20 Storeage Manager * AUTHOR: Harvest Derived @@ -512,7 +512,7 @@ storeCheckCachable(StoreEntry * e) } else if (e->store_status == STORE_OK && EBIT_TEST(e->flag, ENTRY_BAD_LENGTH)) { debug(20, 2) ("storeCheckCachable: NO: wrong content-length\n"); } else if (EBIT_TEST(e->flag, ENTRY_NEGCACHED)) { - debug(20, 2) ("storeCheckCachable: NO: negative cached\n"); + debug(20, 3) ("storeCheckCachable: NO: negative cached\n"); return 0; /* avoid release call below */ } else if (e->mem_obj->inmem_hi > Config.Store.maxObjectSize) { debug(20, 2) ("storeCheckCachable: NO: too big\n");