/// <summary>
 /// Logs inconditionally a text.
 /// Writes the text to the console and to the dialog.
 /// </summary>
 /// <param name="text">Text to log</param>
 override protected void Log(string text)
 {
     //base.log(text);
     dialog.Log(text);
 }