log tweak

This commit is contained in:
zzz
2014-08-07 21:22:18 +00:00
parent 381f494754
commit c9e20c5d23

View File

@@ -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];