eclipse plugin: Log to console the errors/warnings
This commit is contained in:
parent
689f46c0dc
commit
609e24c45f
1 changed files with 3 additions and 2 deletions
|
@ -199,8 +199,9 @@ public class Logger {
|
|||
}
|
||||
}
|
||||
|
||||
// don't print to console the tools exceptions
|
||||
if ( writer != toolLaunchLogWriter_ )
|
||||
// don't print to console the tools if there was no error/warning
|
||||
if ( writer != toolLaunchLogWriter_ ||
|
||||
( writer == toolLaunchLogWriter_ && severity != IStatus.INFO ) )
|
||||
System.out.println(message);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue