smallest logging improvement
This commit is contained in:
parent
65e9bc5e0f
commit
399888f795
|
@ -70,7 +70,7 @@ public class BinaryProtocol {
|
||||||
private boolean isBurnPending;
|
private boolean isBurnPending;
|
||||||
public String signature;
|
public String signature;
|
||||||
|
|
||||||
private BinaryProtocolState state = new BinaryProtocolState();
|
private final BinaryProtocolState state = new BinaryProtocolState();
|
||||||
|
|
||||||
// todo: this ioLock needs better documentation!
|
// todo: this ioLock needs better documentation!
|
||||||
private final Object ioLock = new Object();
|
private final Object ioLock = new Object();
|
||||||
|
@ -233,7 +233,7 @@ public class BinaryProtocol {
|
||||||
public boolean connectAndReadConfiguration(DataListener listener) {
|
public boolean connectAndReadConfiguration(DataListener listener) {
|
||||||
try {
|
try {
|
||||||
signature = getSignature();
|
signature = getSignature();
|
||||||
System.out.println("Got " + signature);
|
System.out.println("BinaryProtocol: Got " + signature + " signature");
|
||||||
SignatureHelper.downloadIfNotAvailable(SignatureHelper.getUrl(signature));
|
SignatureHelper.downloadIfNotAvailable(SignatureHelper.getUrl(signature));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue