Skip to content

Commit

Permalink
chore: fix missing format placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
vimiix committed Jun 21, 2024
1 parent 62a3d84 commit 405ec5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssx/entry/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func sshHostKeyCallback() (ssh.HostKeyCallback, error) {
}
kh, err := knownhosts.New(khPath)
if err != nil {
lg.Error("failed to read known_hosts: ", err)
lg.Error("failed to read known_hosts: %s", err)
return nil, err
}
// Create a custom permissive hostkey callback which still errors on hosts
Expand Down

0 comments on commit 405ec5f

Please sign in to comment.