[openpgp] Downgrade log site from INFO to FINE

This commit is contained in:
Florian Schmaus 2021-05-02 18:41:28 +02:00
parent 8cd0a9f5ce
commit aa49743ef8
1 changed files with 2 additions and 2 deletions

View File

@ -196,8 +196,8 @@ public abstract class AbstractOpenPgpKeyStore implements OpenPgpKeyStore {
publicKeyRings = BCUtil.keyRingsToKeyRingCollection(importKeys);
}
} catch (IllegalArgumentException e) {
LOGGER.log(Level.INFO, "Skipping public key ring " + Long.toHexString(importKeys.getPublicKey().getKeyID()) +
" as it is already in the key ring of " + owner.toString());
LOGGER.log(Level.FINE, "Skipping public key ring " + Long.toHexString(importKeys.getPublicKey().getKeyID()) +
" as it is already in the key ring of " + owner.toString(), e);
}
this.publicKeyRingCollections.put(owner, publicKeyRings);
writePublicKeysOf(owner, publicKeyRings);