We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87afaa commit 2ff68c5Copy full SHA for 2ff68c5
com.playeveryware.eos/Runtime/Core/EOSManager.cs
@@ -756,8 +756,8 @@ private void InitializeLogLevels()
756
{
757
SetLogLevel(LogCategory.AllCategories, LogLevel.Info);
758
return;
759
-
760
}
+
761
for (int logCategoryIndex = 0; logCategoryIndex < logLevelList.Count; logCategoryIndex++)
762
763
SetLogLevel((LogCategory)logCategoryIndex, logLevelList[logCategoryIndex]);
com.playeveryware.eos/Runtime/Core/Utility/LogLevelUtility.cs
@@ -55,7 +55,7 @@ public static List<LogLevel> LogLevelList
55
56
catch (Exception exception)
57
58
- Debug.LogWarning($"{exception}");
+ Debug.LogException(exception);
59
Debug.Log($"Exception when reading log level config, using default");
60
return null;
61
0 commit comments