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:
parent
faf269767b
commit
a0d3431212
2 changed files with 7 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue