]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
remove file_read debugs
authorwessels <>
Sat, 18 Oct 1997 02:20:17 +0000 (02:20 +0000)
committerwessels <>
Sat, 18 Oct 1997 02:20:17 +0000 (02:20 +0000)
src/disk.cc

index 452669f3b77e1d038f0cfdee60be59b4aa78d50b..ec48f0374df6bac0cc917b36809ba0fbbecfac4f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: disk.cc,v 1.80 1997/10/17 05:20:18 wessels Exp $
+ * $Id: disk.cc,v 1.81 1997/10/17 20:20:17 wessels Exp $
  *
  * DEBUG: section 6     Disk I/O Routines
  * AUTHOR: Harvest Derived
@@ -426,7 +426,6 @@ diskHandleRead(int fd, void *data)
     }
     len = read(fd, ctrl_dat->buf, ctrl_dat->req_len);
     F->disk.offset += len;
-    debug(0,0)("diskHandleRead: FD %d read %d bytes\n", fd, len);
     diskHandleReadComplete(ctrlp, len, errno);
 #endif
 }
@@ -496,7 +495,6 @@ file_read(int fd, char *buf, int req_len, int offset, DRCB * handler, void *clie
     ctrl_dat->end_of_file = 0;
     ctrl_dat->handler = handler;
     ctrl_dat->client_data = client_data;
-    debug(0,0)("file_read: FD %d queueing read for %d bytes at %d\n", fd, req_len, offset);
 #if USE_ASYNC_IO
     diskHandleRead(fd, ctrl_dat);
 #else