From a181133c2f3ab3226714d7da44fcafd55623b89a Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 20 Apr 2026 17:37:50 -0600 Subject: [PATCH] style(check-ip): blank line between stderr loading output and results --- cmd/check-ip/main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/check-ip/main.go b/cmd/check-ip/main.go index 772cce3..2c766c0 100644 --- a/cmd/check-ip/main.go +++ b/cmd/check-ip/main.go @@ -207,6 +207,11 @@ func main() { ) } + // Blank line separates the stderr "Loading ..." block from the real + // output (stdout results for CLI mode, or the stderr "listening on" + // log for serve mode). + fmt.Fprintln(os.Stderr) + for _, ip := range ips { cfg.writeText(os.Stdout, cfg.lookup(ip)) }