Ensure exceptions get annotated as well
parent
641bce6ad2
commit
192fafe45b
|
@ -25,6 +25,9 @@ namespace UnityBuilderAction.Reporting
|
||||||
case LogType.Warning:
|
case LogType.Warning:
|
||||||
prefix = "warning";
|
prefix = "warning";
|
||||||
break;
|
break;
|
||||||
|
case LogType.Exception:
|
||||||
|
prefix = "error";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
Debug.Log($"::{prefix} ::{condition}\n{stackTrace}");
|
Debug.Log($"::{prefix} ::{condition}\n{stackTrace}");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue