Fix LogStackTrace Anomaly (#863)

This commit is contained in:
Michael Flaherty
2018-07-31 04:17:36 -07:00
committed by GitHub
parent 255b9323cc
commit 7068c3e865
2 changed files with 12 additions and 3 deletions
+10
View File
@@ -312,6 +312,16 @@ native void SetFailState(const char[] string, any ...);
*/
native void ThrowError(const char[] fmt, any ...);
/**
* Logs a stack trace from the current function call. Code
* execution continues after the call
*
* @param fmt Format string to send with the stack trace.
* @param ... Format arguments.
* @error Always logs a stack trace.
*/
native void LogStackTrace(const char[] fmt, any ...);
/**
* Gets the system time as a unix timestamp.
*