aboutsummaryrefslogtreecommitdiff
path: root/servers.go
diff options
context:
space:
mode:
Diffstat (limited to 'servers.go')
-rw-r--r--servers.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/servers.go b/servers.go
index eb91072..e878911 100644
--- a/servers.go
+++ b/servers.go
@@ -2,6 +2,7 @@ package main
import (
"net"
+ "log/slog"
)
type Server struct {
@@ -22,6 +23,7 @@ func (server *Server) SendRaw(s string) error {
// TODO: Propagate across mesh
return ErrNotConnectedServer
}
+ slog.Debug("send", "line", s, "conn", server.conn)
_, err := (*server.conn).Write([]byte(s))
if err != nil {
// TODO: Should shut down the netFd instead but the stdlib