From c9e20c5d23b3e0e88f6f5b41ad13539aedc64f6d Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Thu, 7 Aug 2014 21:22:18 +0000 Subject: [PATCH] log tweak --- core/java/src/net/i2p/crypto/SU3File.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/src/net/i2p/crypto/SU3File.java b/core/java/src/net/i2p/crypto/SU3File.java index 455e43d628..8b09338a76 100644 --- a/core/java/src/net/i2p/crypto/SU3File.java +++ b/core/java/src/net/i2p/crypto/SU3File.java @@ -255,7 +255,7 @@ public class SU3File { } if (_signerPubkey == null) - throw new IOException("unknown signer: " + _signer); + throw new IOException("unknown signer: " + _signer + " for content type: " + _contentType.getName()); _headerVerified = true; } @@ -325,7 +325,7 @@ public class SU3File { else skip(in, getContentOffset()); if (_signerPubkey == null) - throw new IOException("unknown signer: " + _signer); + throw new IOException("unknown signer: " + _signer + " for content type: " + _contentType.getName()); if (migrateTo != null) // else verify only out = new FileOutputStream(migrateTo); byte[] buf = new byte[16*1024]; -- GitLab