log own ip
All checks were successful
Build and Publish / BuildAndDeploy (push) Successful in 1m46s

This commit is contained in:
matst80
2024-11-09 19:51:31 +01:00
parent 03c21123ec
commit f8c1f07989

View File

@@ -72,6 +72,7 @@ type SyncedPool struct {
func NewSyncedPool(local *GrainLocalPool, hostname string, d Discovery) (*SyncedPool, error) {
listen := fmt.Sprintf("%s:1338", hostname)
l, err := net.Listen("tcp", listen)
log.Printf("Listening on %s", listen)
if err != nil {
return nil, err
}