Fixed a logging message in the bundle decrypting code.

This commit is contained in:
akwizgran
2013-02-19 00:43:36 +00:00
parent 9215537d80
commit d136964bea

View File

@@ -60,7 +60,7 @@ class BundleEncrypterImpl implements BundleEncrypter {
b.readFromParcel(p);
p.recycle();
if(LOG.isLoggable(INFO)) {
LOG.info("Unmarshalled " + (b.size() - 2) + " mappings, "
LOG.info("Unmarshalled " + (b.size() - 1) + " mappings, "
+ plaintext.length + " plaintext bytes");
}
return true;