Hush a couple of informational messages

This commit is contained in:
jdf
2010-03-01 19:33:19 +00:00
parent 923b292344
commit ae7af4a962
@@ -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);
}