diff options
author | tprouty <tprouty@b72e2a10-2d34-0410-9a71-d3beadf02b57> | 2009-05-05 01:17:04 +0000 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-05-05 16:43:53 -0700 |
commit | 3242c6caf751423a690a011a49a31dee445bf63b (patch) | |
tree | 40186441226eb59a489259eb32caa85cf9151d29 /source3 | |
parent | 69d61453df6019caef4e7960fa78c6a3c51f3d2a (diff) | |
download | samba-3242c6caf751423a690a011a49a31dee445bf63b.tar.gz samba-3242c6caf751423a690a011a49a31dee445bf63b.tar.bz2 samba-3242c6caf751423a690a011a49a31dee445bf63b.zip |
s3 onefs: Turn up the debug level for non-error cases
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/onefs_system.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/onefs_system.c b/source3/modules/onefs_system.c index bc2ed469bf..cf99a27a87 100644 --- a/source3/modules/onefs_system.c +++ b/source3/modules/onefs_system.c @@ -580,7 +580,7 @@ ssize_t onefs_sys_recvfile(int fromfd, int tofd, SMB_OFF_T offset, /* Log if recvfile didn't write everything it read. */ if (total_rbytes != total_wbytes) { - DEBUG(0, ("partial recvfile: total_rbytes=%llu but " + DEBUG(3, ("partial recvfile: total_rbytes=%llu but " "total_wbytes=%llu, diff = %llu\n", total_rbytes, total_wbytes, total_rbytes - total_wbytes)); SMB_ASSERT(total_rbytes > total_wbytes); @@ -591,7 +591,7 @@ ssize_t onefs_sys_recvfile(int fromfd, int tofd, SMB_OFF_T offset, */ while (total_rbytes < count) { - DEBUG(0, ("shallow recvfile (%s), reading %llu\n", + DEBUG(3, ("shallow recvfile (%s), reading %llu\n", strerror(errno), count - total_rbytes)); /* @@ -628,7 +628,7 @@ ssize_t onefs_sys_recvfile(int fromfd, int tofd, SMB_OFF_T offset, */ while (total_wbytes < count) { - DEBUG(0, ("partial recvfile, writing %llu\n", count - total_wbytes)); + DEBUG(3, ("partial recvfile, writing %llu\n", count - total_wbytes)); ret = sys_pwrite(tofd, spill_buffer, count - total_wbytes, offset + total_wbytes); |