From 52d069b5b81df7b4328e4f615cad3c554839a81f Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 29 Jan 2026 12:12:30 -0800 Subject: [PATCH] Include invalid value in address prefix error message --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 776e5c9..414e099 100644 --- a/config/config.go +++ b/config/config.go @@ -271,7 +271,7 @@ func splitProtoPrefix(s string) (Protocol, string, error) { if strings.HasPrefix(s, "sacn:") { return ProtocolSACN, s[5:], nil } - return "", "", fmt.Errorf("address must start with 'artnet:' or 'sacn:' prefix") + return "", "", fmt.Errorf("address %q must start with 'artnet:' or 'sacn:' prefix", s) } func splitAddr(s string) (universe, channel string) {