repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
1431524
parent
ca23e6d
author
Antonio Mika
date
2025-02-13 00:28:15 -0500 EST
Fix log line
1 files changed,  +2, -1
M shared/ssh.go
+2, -1
 1@@ -30,7 +30,8 @@ func (r *SshAuthHandler) PubkeyAuthHandler(ctx ssh.Context, key ssh.PublicKey) b
 2 	if err != nil {
 3 		r.Logger.Error(
 4 			"could not find user for key",
 5-			"key", key,
 6+			"keyType", key.Type(),
 7+			"key", key.Marshal(),
 8 			"err", err,
 9 		)
10 		return false