Skip to content

Commit 078581b

Browse files
committed
Keep basic error reporting
1 parent 4ad2b1e commit 078581b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

java/libraries/net/src/processing/net/Server.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,8 @@ public void run() {
267267
}
268268
} catch (SocketException e) {
269269
//thrown when server.close() is called and server is waiting on accept
270+
System.err.println("Server SocketException: " + e.getMessage());
271+
thread = null;
270272
} catch (IOException e) {
271273
//errorMessage("run", e);
272274
e.printStackTrace();

0 commit comments

Comments
 (0)