Skip to content

Commit

Permalink
remove debug use output
Browse files Browse the repository at this point in the history
  • Loading branch information
Itoktsnhc committed Dec 2, 2020
1 parent 35fdef0 commit ec4ca62
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ProxyMediator.Core/ProxyMediator.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<RepositoryUrl>https://github.com/Itoktsnhc/Itok.ProxyMediator</RepositoryUrl>
<PackageTags>Proxy</PackageTags>
<PackageReleaseNotes>Init release</PackageReleaseNotes>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<Version>1.1.0</Version>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
<FileVersion>1.1.1.0</FileVersion>
<Version>1.1.1</Version>
</PropertyGroup>

</Project>
4 changes: 2 additions & 2 deletions ProxyMediator.Core/Sessions/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 _);
Expand Down

0 comments on commit ec4ca62

Please sign in to comment.