mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-17 21:29:54 +01:00
Fixed a logging message in the bundle decrypting code.
This commit is contained in:
@@ -60,7 +60,7 @@ class BundleEncrypterImpl implements BundleEncrypter {
|
|||||||
b.readFromParcel(p);
|
b.readFromParcel(p);
|
||||||
p.recycle();
|
p.recycle();
|
||||||
if(LOG.isLoggable(INFO)) {
|
if(LOG.isLoggable(INFO)) {
|
||||||
LOG.info("Unmarshalled " + (b.size() - 2) + " mappings, "
|
LOG.info("Unmarshalled " + (b.size() - 1) + " mappings, "
|
||||||
+ plaintext.length + " plaintext bytes");
|
+ plaintext.length + " plaintext bytes");
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user