Skip to content

Commit

Permalink
Remove Console.WriteLine debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBoersma committed Feb 2, 2016
1 parent 19cdacf commit d96517f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions FastCGI/FCGIApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,10 @@ public bool Process()
if (ListeningSocket != null && AcceptAsyncResult == null)
{
AcceptAsyncResult = ListeningSocket.BeginAccept((r) => { AcceptIsReady = true; }, null);
Console.WriteLine("StartAccept");
}

if(AcceptAsyncResult != null && AcceptAsyncResult.IsCompleted)
{
Console.WriteLine("FinishAccept");
var connection = ListeningSocket.EndAccept(AcceptAsyncResult);
AcceptIsReady = false;
AcceptAsyncResult = ListeningSocket.BeginAccept((r) => { AcceptIsReady = true; }, null);
Expand Down

0 comments on commit d96517f

Please sign in to comment.