update: 更新异常上报接口
parent
ab0a27d835
commit
3995bba61a
|
|
@ -1,9 +1,9 @@
|
|||
namespace Guru
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Firebase.RemoteConfig;
|
||||
|
||||
namespace Guru
|
||||
{
|
||||
public partial class GuruSDK
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -122,6 +122,7 @@ namespace Guru
|
|||
_onCompleteCallback = onComplete;
|
||||
_isDebugEnabled = config.DebugMode;
|
||||
|
||||
GuruRepoter.Install(); // Install Crashlytics Logger
|
||||
//--- 之后的逻辑放在 Start 方法内 ---
|
||||
}
|
||||
|
||||
|
|
@ -342,6 +343,33 @@ namespace Guru
|
|||
Debug.LogException(e);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 上报崩溃信息
|
||||
/// </summary>
|
||||
/// <param name="message"></param>
|
||||
public static void Report(string message)
|
||||
{
|
||||
GuruRepoter.Log(message);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 上报异常
|
||||
/// </summary>
|
||||
/// <param name="message"></param>
|
||||
public static void ReportException(string message)
|
||||
{
|
||||
GuruRepoter.LogException(message);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 上报异常 Exception
|
||||
/// </summary>
|
||||
/// <param name="ex"></param>
|
||||
public static void ReportException(Exception ex)
|
||||
{
|
||||
GuruRepoter.LogException(ex);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 生命周期
|
||||
|
|
|
|||
Loading…
Reference in New Issue