diff options
author | Volker Lendecke <vl@samba.org> | 2010-09-28 10:38:20 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-09-28 10:40:17 +0200 |
commit | 51bc104c5c2e8f23fab1c599a7ec3e4291165244 (patch) | |
tree | 019e8088313587108c29258ab27b469c9d46296e | |
parent | 2a1891a9d67d547847b233dec85925d726696e7f (diff) | |
download | samba-51bc104c5c2e8f23fab1c599a7ec3e4291165244.tar.gz samba-51bc104c5c2e8f23fab1c599a7ec3e4291165244.tar.bz2 samba-51bc104c5c2e8f23fab1c599a7ec3e4291165244.zip |
s3: Increase the debuglevel for connection termination msgs
-rw-r--r-- | source3/smbd/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 27f132e09c..66be77efce 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -140,7 +140,7 @@ bool srv_send_smb(struct smbd_server_connection *sconn, char *buffer, * Try and give an error message saying what * client failed. */ - DEBUG(0,("pid[%d] Error writing %d bytes to client %s. %d. (%s)\n", + DEBUG(1,("pid[%d] Error writing %d bytes to client %s. %d. (%s)\n", (int)sys_getpid(), (int)len, get_peer_addr(sconn->sock, addr, sizeof(addr)), (int)ret, strerror(errno) )); @@ -425,7 +425,7 @@ static NTSTATUS receive_smb_talloc(TALLOC_CTX *mem_ctx, int fd, p_unread, &len); if (!NT_STATUS_IS_OK(status)) { char addr[INET6_ADDRSTRLEN]; - DEBUG(0, ("read_smb_length_return_keepalive failed for " + DEBUG(1, ("read_smb_length_return_keepalive failed for " "client %s read error = %s.\n", get_peer_addr(fd, addr, sizeof(addr)), nt_errstr(status))); |