From 78e093b138e2e0e1e90119e4de4edd75d6203651 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 19 Apr 2025 18:41:49 -0400 Subject: add missing printf arg --- hosts/hosts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosts') diff --git a/hosts/hosts.go b/hosts/hosts.go index e56451c..4f4728c 100644 --- a/hosts/hosts.go +++ b/hosts/hosts.go @@ -32,7 +32,7 @@ func Add(host Host) error { i, ok := slices.BinarySearchFunc(hosts, host, cmpHost) if ok { - util.Logf("replacing host %q in known hosts file") + util.Logf("replacing host %q in known hosts file", host.Addr) hosts[i] = host } else { hosts = slices.Insert(hosts, i, host) -- cgit v1.2.3