diff --git a/Runtime/GuruCore/Runtime/Reporter/CrashlyticsAgent.cs b/Runtime/GuruCore/Runtime/Reporter/CrashlyticsAgent.cs index 028a8c9..ba2ce88 100644 --- a/Runtime/GuruCore/Runtime/Reporter/CrashlyticsAgent.cs +++ b/Runtime/GuruCore/Runtime/Reporter/CrashlyticsAgent.cs @@ -87,7 +87,6 @@ namespace Guru private static void OnReceivedMessage(string condition, string stackTrace, LogType type) { - string msg = $"{DateTime.Now:yy-MM-dd HH:mm:ss} [{ToLogTypeString(type)}] {condition}\n{stackTrace}"; if (_catchFilter.Contains(type)) @@ -114,7 +113,7 @@ namespace Guru public static void LogException(string msg) { - Crashlytics.LogException(new Exception(msg)); + LogException(new Exception(msg)); } public static void Log(string msg)