public void UpdateWithError(String moreOutput, System.Exception ex, bool notifyBubble = false) { Markup emoji = Markup.error; if (OGCSexception.LoggingAsFail(ex)) { emoji = Markup.fail; } Update(moreOutput + (!string.IsNullOrEmpty(moreOutput) ? "<br/>" : "") + OGCSexception.FriendlyMessage(ex), emoji, notifyBubble: notifyBubble); }