diff options
Diffstat (limited to 'hosts/hosts.go')
| -rw-r--r-- | hosts/hosts.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |