1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 23:15:24 +02:00

Write log messages to the system out instead of err.

This commit is contained in:
Mikhail Khodjaiants 2006-04-12 19:50:13 +00:00
parent faf269767b
commit a0d3431212
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2006-04-12 Mikhail Khodjaiants
Write log messages to the system out instead of err.
* MIPlugin.java
2006-04-12 Mikhail Khodjaiants
Bug 136206: Suppress Resumed events when processing solib events.
* EventManager.java

View file

@ -482,12 +482,12 @@ public class MIPlugin extends Plugin {
while (message.length() > 100) {
String partial = message.substring(0, 100);
message = message.substring(100);
System.err.println(partial + "\\"); //$NON-NLS-1$
System.out.println(partial + "\\"); //$NON-NLS-1$
}
if (message.endsWith("\n")) { //$NON-NLS-1$
System.err.print(message);
System.out.print(message);
} else {
System.err.println(message);
System.out.println(message);
}
}
}