Skip to content

Commit

Permalink
chore: changed to warning and use sdk logger
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonHough committed Jan 9, 2024
1 parent 53e29a0 commit 97304b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Runtime/Core/Scripts/CoreSettingsHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace ReadyPlayerMe.Core
{
public static class CoreSettingsHandler
{
private const string TAG = nameof(CoreSettingsHandler);
private const string RESOURCE_PATH = "Settings/CoreSettings";
public static CoreSettings CoreSettings
{
Expand All @@ -14,7 +15,7 @@ public static CoreSettings CoreSettings
coreSettings = Load();
if (coreSettings == null)
{
Debug.LogError("CoreSettings could not be loaded.");
SDKLogger.LogWarning(TAG, "CoreSettings could not be loaded.");
}
return coreSettings;
}
Expand Down

0 comments on commit 97304b4

Please sign in to comment.