mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Hush a couple of informational messages
This commit is contained in:
@@ -152,12 +152,12 @@ class AndroidDevice implements AndroidDeviceProperties {
|
||||
}
|
||||
|
||||
private void startProc(final String name, final int pid) {
|
||||
System.err.println("Process " + name + " started at pid " + pid);
|
||||
// System.err.println("Process " + name + " started at pid " + pid);
|
||||
activeProcesses.add(pid);
|
||||
}
|
||||
|
||||
private void endProc(final int pid) {
|
||||
System.err.println("Process " + pid + " stopped.");
|
||||
// System.err.println("Process " + pid + " stopped.");
|
||||
activeProcesses.remove(pid);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user