don't log inside library about db close #442

This commit is contained in:
Alex Sharov 2022-05-10 08:55:32 +07:00 committed by GitHub
parent da133c2d97
commit 9f5b2b6391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -376,8 +376,6 @@ func (db *MdbxKV) Close() {
if err := os.RemoveAll(db.opts.path); err != nil {
db.log.Warn("failed to remove in-mem db file", "err", err)
}
} else {
log.Info("database closed", "label", db.opts.label)
}
}