style(check-ip): blank line between stderr loading output and results

This commit is contained in:
AJ ONeal 2026-04-20 17:37:50 -06:00
parent e3973b240e
commit a181133c2f
No known key found for this signature in database

View File

@ -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))
}