コード例 #1
0
        /// <inheritdoc />
        public void LogException(Exception exception, Object context)
        {
            Internal_LogException(exception, context?.unmanagedPtr ?? IntPtr.Zero);

            SendExceptionLog?.Invoke(exception, context);
        }
コード例 #2
0
        public void LogException(Exception exception, FlaxEngine.Object context)
        {
            Debug.Logger.LogHandler.LogException(exception, context);

            SendExceptionLog?.Invoke(exception, context);
        }
コード例 #3
0
        /// <inheritdoc />
        public void LogException(Exception exception, Object context)
        {
            Internal_LogException(exception, Object.GetUnmanagedPtr(context));

            SendExceptionLog?.Invoke(exception, context);
        }