public class DebugController extends KolaController {
DebugView view;
public DebugController() {
view = new DebugView();
this.setView(view);
try {
final PipedInputStream outPipe = new PipedInputStream();
System.setOut(new PrintStream(new PipedOutputStream(outPipe), true));