Remove a confusing warning on Keystore import

This commit is contained in:
Zahary Karadjov 2020-08-04 12:17:06 +03:00
parent d7d1e072ba
commit d45ee66c21
No known key found for this signature in database
GPG Key ID: C8936F8A3073D609

View File

@ -228,7 +228,7 @@ proc importKeystoresFromDir*(rng: var BrHmacDrbgContext,
let keystore = try:
Json.loadFile(file, Keystore)
except SerializationError as e:
warn "Invalid keystore", err = e.formatMsg(file)
trace "Invalid keystore", err = e.formatMsg(file)
continue
except IOError as e:
warn "Failed to read keystore file", file, err = e.msg