diff --git a/Facepunch.Steamworks/Interfaces/Workshop.Query.cs b/Facepunch.Steamworks/Interfaces/Workshop.Query.cs index 747aeee..4c307eb 100644 --- a/Facepunch.Steamworks/Interfaces/Workshop.Query.cs +++ b/Facepunch.Steamworks/Interfaces/Workshop.Query.cs @@ -95,8 +95,6 @@ namespace Facepunch.Steamworks Handle = workshop.ugc.CreateQueryAllUGCRequest( (SteamNative.UGCQuery)(int)Order, (SteamNative.UGCMatchingUGCType)(int)QueryType, UploaderAppId, AppId, (uint)_resultPage + 1 ); } - Console.WriteLine( "Handle: " + Handle.Value ); - if ( !string.IsNullOrEmpty( SearchText ) ) workshop.ugc.SetSearchText( Handle, SearchText ); @@ -113,8 +111,6 @@ namespace Facepunch.Steamworks Callback.Handle = workshop.ugc.SendQueryUGCRequest( Handle ); Callback.OnResult = OnResult; - Console.WriteLine( "Callback.Handle: " + Callback.Handle.Value ); - workshop.steamworks.AddCallResult( Callback ); }