We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee1593c commit a213616Copy full SHA for a213616
src/net/sharksystem/asap/protocol/ASAPPersistentConnection.java
@@ -209,7 +209,7 @@ public void run() {
209
this.asapInternalPeer.pushInterests(this.os);
210
} catch (IOException | ASAPException e) {
211
this.terminate("error when pushing interest: ", e);
212
- e.printStackTrace();
+ //e.printStackTrace();
213
return;
214
}
215
@@ -432,7 +432,8 @@ public void run() {
432
os.close(); // more important to close than input stream - do it first
433
is.close();
434
} catch (IOException ex) {
435
- ex.printStackTrace();
+ Log.writeLog(this, ex.getLocalizedMessage());
436
+ //ex.printStackTrace();
437
438
439
finally {
0 commit comments