diff --git a/ARKUpdater/Classes/SteamKit.cs b/ARKUpdater/Classes/SteamKit.cs index 040ba53..ae51d75 100644 --- a/ARKUpdater/Classes/SteamKit.cs +++ b/ARKUpdater/Classes/SteamKit.cs @@ -144,9 +144,11 @@ private void LogOnCallback(SteamUser.LoggedOnCallback loggedOn) { if( loggedOn.Result != EResult.OK ) { - _Parent.Log.ConsolePrint(LogLevel.Debug, "Unable to connect to Steam3. {0}", loggedOn.Result); + _Parent.Log.ConsolePrint(LogLevel.Error, "Unable to connect to Steam3. Error: {0}", loggedOn.Result); _ThreadRunning = false; + Failed = true; + _ResetEvent.Set(); return; }