Add missing param to log

This commit is contained in:
Manfred Karrer 2017-10-12 13:48:12 -05:00
parent 6904c545b0
commit b835e7f5a5
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -173,7 +173,7 @@ public class ArbitratorManager {
.filter(e -> {
final boolean isInPublicKeyInList = isPublicKeyInList(Utils.HEX.encode(e.getRegistrationPubKey()));
if (!isInPublicKeyInList)
log.warn("We got an arbitrator which is not in our list of publicKeys. Arbitrator=", e.toString());
log.warn("We got an arbitrator which is not in our list of publicKeys. Arbitrator={}", e.toString());
final boolean isSigValid = verifySignature(e.getPubKeyRing().getSignaturePubKey(),
e.getRegistrationPubKey(),
e.getRegistrationSignature());