From ec4ca622f5996aa52ba28c360ffa9700b7ca3195 Mon Sep 17 00:00:00 2001 From: itoktsnhc Date: Wed, 2 Dec 2020 16:57:01 +0800 Subject: [PATCH] remove debug use output --- ProxyMediator.Core/ProxyMediator.Core.csproj | 6 +++--- ProxyMediator.Core/Sessions/Session.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ProxyMediator.Core/ProxyMediator.Core.csproj b/ProxyMediator.Core/ProxyMediator.Core.csproj index 625146e..f6806d6 100644 --- a/ProxyMediator.Core/ProxyMediator.Core.csproj +++ b/ProxyMediator.Core/ProxyMediator.Core.csproj @@ -11,9 +11,9 @@ https://github.com/Itoktsnhc/Itok.ProxyMediator Proxy Init release - 1.1.0.0 - 1.1.0.0 - 1.1.0 + 1.1.1.0 + 1.1.1.0 + 1.1.1 diff --git a/ProxyMediator.Core/Sessions/Session.cs b/ProxyMediator.Core/Sessions/Session.cs index fc69495..4d199e9 100644 --- a/ProxyMediator.Core/Sessions/Session.cs +++ b/ProxyMediator.Core/Sessions/Session.cs @@ -39,7 +39,7 @@ public static async Task Run(SessionContextPool pool, TcpClient client, ProxySer try { var processor = Handlers[result]; - Console.WriteLine($"[{context.Id}] {result} → {processor.GetType()} ↓"); + //Console.WriteLine($"[{context.Id}] {result} → {processor.GetType()} ↓"); result = await processor.Run(proxyConfig.Handler, context); } catch (Exception) @@ -48,7 +48,7 @@ public static async Task Run(SessionContextPool pool, TcpClient client, ProxySer } } while (result != LastPipeState.GameOver); - Console.WriteLine($"[{context.Id}] {result} ⬆"); + //Console.WriteLine($"[{context.Id}] {result} ⬆"); } pool.ContextContainer.TryRemove(contextId, out _);