private ConsoleNotifyLevel notifyLevel = ConsoleNotifyLevel.NOTIFY_OFF;
public void createPartControl(Composite parent) {
super.createPartControl(parent);
final IConsole console = Activator.getDefault().getConsole();
if(console != null) {
console.addConsoleOutputListener(this);
}
partListener = createPartListener();
getSite().getPage().addPartListener(partListener);
}