mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
[openpgp] Downgrade log site from INFO to FINE
This commit is contained in:
parent
8cd0a9f5ce
commit
aa49743ef8
1 changed files with 2 additions and 2 deletions
|
@ -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