File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public static string GetCurrentPlatform()
37
37
static bool initialized ;
38
38
static bool Init ( )
39
39
{
40
- LootLockerLogger . GetForLogLevel ( ) ( "SDK is Initializing" ) ;
40
+ LootLockerLogger . GetForLogLevel ( LootLockerLogger . LogLevel . Verbose ) ( "SDK is Initializing" ) ;
41
41
LootLockerServerManager . CheckInit ( ) ;
42
42
return LoadConfig ( ) ;
43
43
}
@@ -88,7 +88,7 @@ static bool LoadConfig()
88
88
return false ;
89
89
}
90
90
91
- LootLockerLogger . GetForLogLevel ( ) ( "SDK is Initialized" ) ;
91
+ LootLockerLogger . GetForLogLevel ( LootLockerLogger . LogLevel . Verbose ) ( "SDK is Initialized" ) ;
92
92
initialized = true ;
93
93
return initialized ;
94
94
}
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ static void OnEnterPlaymodeInEditor(EnterPlayModeOptions options)
51
51
void Awake ( )
52
52
{
53
53
CheckInit ( ) ;
54
- DontDestroyOnLoad ( gameObject ) ; //the same as i.gameobject (is there's only one instance in the scene)
54
+ DontDestroyOnLoad ( gameObject ) ; //the same as i.gameobject (if there's only one instance in the scene)
55
55
}
56
56
57
57
}
You can’t perform that action at this time.
0 commit comments