/// <summary>
 /// Handle the event where slicing output is generated by adding it to the current log
 /// </summary>
 /// <param name="otputLine"></param>
 public void handleSlicerOutput(string otputLine)
 {
     //TODO: add proper eol character handling, we should actually break up the string into seperate lines according to the eol terminators
     //Debug.WriteLine(otputLine);
     //At the moment we simply erease the eol added to the lines by the engine because they should actually not be there
     outputBox.writeLine(otputLine.Replace(@"\n", ""));
 }