mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-09 15:59:32 +02:00
[openpgp] Downgrade log site from INFO to FINE
This commit is contained in:
parent
8cd0a9f5ce
commit
aa49743ef8
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue