Additional logging when reading tag

This commit is contained in:
ameba23
2021-08-27 09:55:28 +02:00
parent 1ffa8ee024
commit 873675d68f

View File

@@ -47,7 +47,9 @@ abstract class Connection {
TransportId transportId) {
StreamContext ctx;
try {
LOG.info("Reading tag...");
byte[] tag = readTag(reader.getInputStream());
LOG.info("Read tag!");
return keyManager.getStreamContext(transportId, tag);
} catch (IOException | DbException e) {
logException(LOG, WARNING, e);