summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2019-02-12 19:07:38 +0100
committerBjoern Jacke <bjacke@samba.org>2019-02-17 13:33:14 +0100
commite8d1e04bb64ea5e6cc17bf4a996fdee770a81967 (patch)
tree82616ca9af7431994f02eeb6bda09b3e77da3579 /source3/lib
parente2cc29daf7390b037014ebca67fa4480a1648787 (diff)
downloadsamba-e8d1e04bb64ea5e6cc17bf4a996fdee770a81967.tar.gz
sysquotas_4B: raise log level of a sometimes too noisy message
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Uri Simchoni <uri@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/sysquotas_4B.c2
1 files changed, 1 insertions, 1 deletions
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)));