Disposer.register(parentDisposable, myConsole);
}
}
private void start(@NotNull final Content consoleContent) {
ArchivedOutputListener outputListener = new ArchivedOutputListener() {
@Override
public void onOutputAvailable(@NotNull String text, Key outputType, boolean archived) {
ConsoleViewContentType contentType = ConsoleViewContentType.getConsoleViewType(outputType);
myConsole.print(text, contentType);
if (!archived && text.startsWith("ERROR ")) {