From 5b51bec27891dc42fdfbcb230205d6106ed5f118 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Fri, 6 Mar 2020 12:22:25 +0100 Subject: [PATCH] vfs_recycle: prevent flooding the log if we're called on non-existant paths vfs_recycle is assuming that any path passed to unlink must exist, otherwise it logs this error. Turn this into a DEBUG level message. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14316 See also: https://bugzilla.redhat.com/show_bug.cgi?id=1780802 Signed-off-by: Ralph Boehme Reviewed-by: Isaac Boukris Autobuild-User(master): Isaac Boukris Autobuild-Date(master): Mon Mar 9 14:15:06 UTC 2020 on sn-devel-184 --- source3/modules/vfs_recycle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_recycle.c b/source3/modules/vfs_recycle.c index a1d32bf10cb..ab1e6aa4dcf 100644 --- a/source3/modules/vfs_recycle.c +++ b/source3/modules/vfs_recycle.c @@ -236,8 +236,8 @@ static off_t recycle_get_file_size(vfs_handle_struct *handle, } if (SMB_VFS_STAT(handle->conn, smb_fname_tmp) != 0) { - DEBUG(0,("recycle: stat for %s returned %s\n", - smb_fname_str_dbg(smb_fname_tmp), strerror(errno))); + DBG_DEBUG("stat for %s returned %s\n", + smb_fname_str_dbg(smb_fname_tmp), strerror(errno)); size = (off_t)0; goto out; } -- 2.24.1