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);
        }
Exemplo n.º 2
0
 public void UpdateWithError(String moreOutput, System.Exception ex, bool notifyBubble = false)
 {
     Update(moreOutput + (!string.IsNullOrEmpty(moreOutput) ? "<br/>" : "") + OGCSexception.FriendlyMessage(ex), Markup.error, notifyBubble: notifyBubble);
 }