summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 500cfcb..6150db4 100644
--- a/main.go
+++ b/main.go
@@ -24,7 +24,7 @@ func (n *Notify) Write(p []byte) (int, error) {
if sz > maxLen {
p = append(p[:maxLen], []byte("...")...)
}
- log.Println("Send", p)
+ log.Println("Send", string(p))
n.conn.Notice(n.target, string(p))
return sz, nil
}