]> Cypherpunks.ru repositories - goircd.git/blobdiff - client.go
Decrease log verbosity.
[goircd.git] / client.go
index cc179c8ca1eaadca8796c5d144288ca3d2e0c359..950cbcaba02100a28fb0b9f994a41e026548ad56 100644 (file)
--- a/client.go
+++ b/client.go
@@ -55,7 +55,7 @@ func NewClient(hostname string, conn net.Conn) *Client {
 func (client *Client) Processor(sink chan<- ClientEvent) {
        var buf_net []byte
        buf := make([]byte, 0)
-       log.Println("New client", client)
+       log.Println(client, "New client")
        sink <- ClientEvent{client, EVENT_NEW, ""}
        for {
                buf_net = make([]byte, BUF_SIZE)