diff --git a/src/tcp/tcp.go b/src/tcp/tcp.go index 86853ad..622fe97 100644 --- a/src/tcp/tcp.go +++ b/src/tcp/tcp.go @@ -96,7 +96,7 @@ func (s *server) run() (err error) { func (s *server) clientCommuncation(port string, c *comm.Comm) (err error) { // send ok to tell client they are connected - log.Debug("sending " + s.banner) + log.Debugf("sending '%s'", s.banner) err = c.Send([]byte(s.banner)) if err != nil { return