From 41d269f268fb8cd60fd9ab3364af9fef551e3d51 Mon Sep 17 00:00:00 2001 From: crusader Date: Tue, 31 Oct 2017 20:04:35 +0900 Subject: [PATCH] ing --- client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.go b/client.go index 0ed0276..64a1fba 100644 --- a/client.go +++ b/client.go @@ -3,6 +3,7 @@ package server import ( "fmt" "io" + "log" "sync" "sync/atomic" "time" @@ -112,6 +113,7 @@ func handleClientConnection(c *client, conn io.ReadWriteCloser) { return } + log.Printf("handleClientConnection") clientStopChan := make(chan struct{}) go c.ch.Handle(conn, clientStopChan)