diff --git a/CHANGELOG b/CHANGELOG index 893b612..b398f16 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -50,6 +50,7 @@ xx/xx/2018 autofs-5.1.5 - add mount_verbose configuration option. - optionally log mount requestor process info. - log mount call arguments if mount_verbose is set. +- make expire remaining log level debug. 19/12/2017 autofs-5.1.4 - fix spec file url. diff --git a/daemon/direct.c b/daemon/direct.c index c48e59d..bdec556 100644 --- a/daemon/direct.c +++ b/daemon/direct.c @@ -990,7 +990,7 @@ void *expire_proc_direct(void *arg) pthread_cleanup_pop(1); if (left) - info(ap->logopt, "%d remaining in %s", left, ap->path); + debug(ap->logopt, "%d remaining in %s", left, ap->path); ec.status = left; diff --git a/daemon/indirect.c b/daemon/indirect.c index b5f6cf0..7b1d34c 100644 --- a/daemon/indirect.c +++ b/daemon/indirect.c @@ -578,7 +578,7 @@ void *expire_proc_indirect(void *arg) pthread_cleanup_pop(1); if (submnts) - info(ap->logopt, + debug(ap->logopt, "%d submounts remaining in %s", submnts, ap->path); /* @@ -586,7 +586,7 @@ void *expire_proc_indirect(void *arg) * words) the umounts are done by the time we reach here */ if (count) - info(ap->logopt, "%d remaining in %s", count, ap->path); + debug(ap->logopt, "%d remaining in %s", count, ap->path); ec.status = left;