From 7199297a73855e87fdf4458c8fcb4759c7f499b1 Mon Sep 17 00:00:00 2001 From: James Botting Date: Sat, 29 Aug 2015 14:05:58 +0100 Subject: [PATCH] Diagnosing cache bug --- ARKUpdater/Classes/SteamKit.cs | 1 + ARKUpdater/Interfaces/SteamInterface.cs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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