protected void writeInternalStreams(byte[] stream, int count) throws IOException {
   String text = new String(stream, 0, count, this.encoding);
   Emulator emulator = new Emulator();
   String controlFreeText = emulator.processText(text);
   MessageConsoleHelper.writeToConsole("M Debug", controlFreeText, false, false);
 }