From 481c3ab84a87024e91b38065b77c947dc5696a46 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sat, 18 Oct 1997 02:20:17 +0000 Subject: [PATCH] remove file_read debugs --- src/disk.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 -- 2.47.3