diff --git a/ARKUpdater/Classes/SteamKit.cs b/ARKUpdater/Classes/SteamKit.cs index 6b4c352..e29ba23 100644 --- a/ARKUpdater/Classes/SteamKit.cs +++ b/ARKUpdater/Classes/SteamKit.cs @@ -64,6 +64,7 @@ protected virtual void Dispose(bool disposing) Ready = false; // Disconnect from Steam3 + _User.LogOff(); if( _Client.IsConnected ) _Client.Disconnect(); } } diff --git a/ARKUpdater/Interfaces/SteamInterface.cs b/ARKUpdater/Interfaces/SteamInterface.cs index 9b22574..4ee62b9 100644 --- a/ARKUpdater/Interfaces/SteamInterface.cs +++ b/ARKUpdater/Interfaces/SteamInterface.cs @@ -97,6 +97,7 @@ public override int GetGameInformation(uint appid) KeyValue buildid = node["buildid"]; if( buildid != KeyValue.Invalid ) { + _Parent.Log.ConsolePrint(LogLevel.Debug, "Retrieved Buildid from Steam3: {0}", buildid.Value); returndata = Convert.ToInt32(buildid.Value); } } @@ -171,4 +172,4 @@ public override int GetGameBuildVersion(string ApplicationPath) throw new NotImplementedException(); } } -} +} \ No newline at end of file