LeaveBreadcrumb() public static method

public static LeaveBreadcrumb ( string breadcrumb ) : void
breadcrumb string
return void
Ejemplo n.º 1
0
 void LeaveComplexBreadcrumbAndNotify()
 {
     Bugsnag.LeaveBreadcrumb("Reload", BreadcrumbType.Navigation, new Dictionary <string, string>()
     {
         { "preload", "launch" }
     });
     Bugsnag.Notify(new System.Exception("Collective failure"));
 }
Ejemplo n.º 2
0
 void LeaveMessageBreadcrumbAndNotify()
 {
     Bugsnag.LeaveBreadcrumb("Initialize bumpers");
     Bugsnag.Notify(new System.Exception("Collective failure"));
 }