dirmngr: Silence diagnostics about starting housekeeping.

* dirmngr/dirmngr.c (housekeeping_thread): Print info only in very
verbose mode.

Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
Werner Koch 2016-09-19 11:47:29 +02:00
parent 086d219d96
commit 5bf1facc97
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
1 changed files with 2 additions and 2 deletions

View File

@ -1715,12 +1715,12 @@ housekeeping_thread (void *arg)
return NULL;
}
sentinel++;
if (opt.verbose)
if (opt.verbose > 1)
log_info ("starting housekeeping\n");
ks_hkp_housekeeping (curtime);
if (opt.verbose)
if (opt.verbose > 1)
log_info ("ready with housekeeping\n");
sentinel--;
return NULL;