Skip to content

Commit f74125f

Browse files
committed
Decrease loglevel of 'enter playmode' logging
1 parent 7cb38cd commit f74125f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Runtime/Client/LootLockerServerRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ public static void Reset()
357357
[InitializeOnEnterPlayMode]
358358
static void OnEnterPlaymodeInEditor(EnterPlayModeOptions options)
359359
{
360-
LootLockerLogger.GetForLogLevel()("Reset RateLimiter due to entering play mode");
360+
LootLockerLogger.GetForLogLevel(LootLockerLogger.LogLevel.Verbose)("Reset RateLimiter due to entering play mode");
361361
Reset();
362362
}
363363
#endif

Runtime/Game/LootLockerSDKManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public partial class LootLockerSDKManager
1919
[InitializeOnEnterPlayMode]
2020
static void OnEnterPlaymodeInEditor(EnterPlayModeOptions options)
2121
{
22-
LootLockerLogger.GetForLogLevel()("SDK is resetting for entering Playmode");
22+
LootLockerLogger.GetForLogLevel(LootLockerLogger.LogLevel.Verbose)("SDK is resetting for entering Playmode");
2323
initialized = false;
2424
}
2525
#endif

0 commit comments

Comments
 (0)