| 85 | } |
| 86 | |
| 87 | void DebugLog::LogException(MObject* exceptionObject) |
| 88 | { |
| 89 | #if USE_CSHARP |
| 90 | if (exceptionObject == nullptr || CacheMethods()) |
| 91 | return; |
| 92 | |
| 93 | MainThreadManagedInvokeAction::ParamsBuilder params; |
| 94 | params.AddParam(exceptionObject); |
| 95 | MainThreadManagedInvokeAction::Invoke(Internal_SendLogException, params); |
| 96 | #endif |
| 97 | } |
| 98 | |
| 99 | String DebugLog::GetStackTrace() |
| 100 | { |
no test coverage detected