better error message in send

This commit is contained in:
pippellia-btc
2025-09-18 13:34:17 +02:00
parent 6569b00e66
commit fa3c2919d7

View File

@@ -111,7 +111,7 @@ func Send[T any](ch chan T) Forward[T] {
case ch <- t:
return nil
default:
return fmt.Errorf("channel is full, dropping %v", t)
return fmt.Errorf("pipe.Send: channel is full, dropping %v", t)
}
}
}