From: Björn Jacke Date: Tue, 12 Feb 2019 18:07:38 +0000 (+0100) Subject: sysquotas_4B: raise log level of a sometimes too noisy message X-Git-Tag: ldb-1.6.1~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8d1e04bb64ea5e6cc17bf4a996fdee770a81967;p=thirdparty%2Fsamba.git sysquotas_4B: raise log level of a sometimes too noisy message Signed-off-by: Bjoern Jacke Reviewed-by: Uri Simchoni --- diff --git a/source3/lib/sysquotas_4B.c b/source3/lib/sysquotas_4B.c index aef13219f41..d9beb924ad9 100644 --- a/source3/lib/sysquotas_4B.c +++ b/source3/lib/sysquotas_4B.c @@ -141,7 +141,7 @@ static int sys_quotactl_4B(const char * path, int cmd, * means that quotas are not configured (commonly). */ if (errno != ENOTSUP && errno != EINVAL) { - DEBUG(0, ("failed to %s quota for %s ID %u on %s: %s\n", + DEBUG(5, ("failed to %s quota for %s ID %u on %s: %s\n", (cmd & QCMD(Q_GETQUOTA, 0)) ? "get" : "set", (cmd & QCMD(0, GRPQUOTA)) ? "group" : "user", (unsigned)id, path, strerror(errno)));