log connection correct
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 1m55s

This commit is contained in:
matst80
2024-11-09 23:32:41 +01:00
parent 22a80c5978
commit 52e9a44238

View File

@@ -107,7 +107,7 @@ func NewSyncedPool(local *GrainLocalPool, hostname string, d Discovery) (*Synced
log.Printf("Error accepting connection: %v\n", err)
continue
}
log.Printf("Got connection from %s", conn.RemoteAddr().Network())
log.Printf("Got connection from %s", conn.RemoteAddr())
go pool.handleConnection(conn)
}