mdbx-chk: log sub-DBs when verbose > 0 (cosmetic).

Change-Id: Ie73c0773929b51eb11fb02afe18bb01b59fb2612
This commit is contained in:
Leonid Yuriev 2019-06-20 10:12:00 +03:00
parent 86cfd86cda
commit c91cc85c1f

View File

@ -173,7 +173,7 @@ static walk_dbi_t *pagemap_lookup_dbi(const char *dbi_name, bool silent) {
} }
dbi->name = mdbx_strdup(dbi_name); dbi->name = mdbx_strdup(dbi_name);
if (verbose > 1 && !silent) { if (verbose > 0 && !silent) {
print(" - found '%s' area\n", dbi_name); print(" - found '%s' area\n", dbi_name);
fflush(NULL); fflush(NULL);
} }