From: wessels <> Date: Sat, 18 Oct 1997 02:20:17 +0000 (+0000) Subject: remove file_read debugs X-Git-Tag: SQUID_3_0_PRE1~4781 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=481c3ab84a87024e91b38065b77c947dc5696a46;p=thirdparty%2Fsquid.git remove file_read debugs --- diff --git a/src/disk.cc b/src/disk.cc index 452669f3b7..ec48f0374d 100644 --- a/src/disk.cc +++ b/src/disk.cc @@ -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