/*
- * $Id: DiskDaemonDiskIOModule.cc,v 1.3 2006/05/29 00:15:03 robertc Exp $
+ * $Id: DiskDaemonDiskIOModule.cc,v 1.4 2007/04/12 19:37:24 wessels Exp $
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
* ----------------------------------------------------------
*/
assert(!initialised);
memset(&diskd_stats, '\0', sizeof(diskd_stats));
+#if 0
+ /*
+ * DPW 2007-04-12
+ * No debugging here please because this method is called before
+ * the debug log is configured and we'll get the message on
+ * stderr when doing things like 'squid -k reconfigure'
+ */
debugs(47, 1, "diskd started");
+#endif
initialised = true;
}
/*
- * $Id: mem.cc,v 1.101 2006/09/03 21:05:20 hno Exp $
+ * $Id: mem.cc,v 1.102 2007/04/12 19:37:23 wessels Exp $
*
* DEBUG: section 13 High Level Memory Pool Management
* AUTHOR: Harvest Derived
else
new_pool_limit = mem_unlimited_size;
+#if 0
+ /*
+ * DPW 2007-04-12
+ * No debugging here please because this method is called before
+ * the debug log is configured and we'll get the message on
+ * stderr when doing things like 'squid -k reconfigure'
+ */
if (MemPools::GetInstance().idleLimit() > new_pool_limit)
debug(13, 1) ("Shrinking idle mem pools to %.2f MB\n", toMB(new_pool_limit));
+#endif
MemPools::GetInstance().setIdleLimit(new_pool_limit);
}