Skip to content

Commit 64e68b2

Browse files
committed
remove "Listening for transport dt_socket at address: 8727" message
1 parent efa0ad5 commit 64e68b2

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

app/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src"/>
3+
<classpathentry excluding="processing/mode/java/runner/EventThread.java" kind="src" path="src"/>
44
<classpathentry kind="src" path="generated">
55
<attributes>
66
<attribute name="ignore_optional_problems" value="true"/>

app/src/processing/app/EditorConsole.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,9 @@ synchronized public void message(String what, boolean err) {
261261
// Remove initalization warning from LWJGL.
262262
} else if (err && what.contains("XInitThreads() called for concurrent")) {
263263
// "Info: XInitThreads() called for concurrent Thread support" message on Linux
264+
} else if (!err && what.contains("Listening for transport dt_socket at address")) {
265+
// Message from the JVM about the socket launch for debug
266+
// Listening for transport dt_socket at address: 8727
264267
} else {
265268
// Append a piece of text to the console. Swing components are NOT
266269
// thread-safe, and since the MessageSiphon instantiates new threads,

todo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ X "To use this library, switch to 32-bit mode in Preferences." (OS X)
2323
X "To use this library, you must use the 32-bit version of Processing."
2424
X rebuild Runner to use SocketAttach
2525
X deals with spaces in path problem, but also opens a port
26-
_ remove "Listening for transport dt_socket at address: 8727" message
26+
X remove "Listening for transport dt_socket at address: 8727" message
2727

2828
manager
2929
X "New version available" mesage is showing html tags around it

0 commit comments

Comments
 (0)