Remove logging

This commit is contained in:
Bernd Schoolmann 2024-01-19 08:59:02 +01:00
parent 019fe3ef5b
commit f3954e196c
No known key found for this signature in database
1 changed files with 0 additions and 2 deletions

View File

@ -288,8 +288,6 @@ func StartUnixAgent(path string, runtimeConfig config.RuntimeConfig) error {
fd, err := l.Accept()
if err != nil {
println("accept error", err.Error())
} else {
log.Info("Accepted unix socket connection; handling request")
}
go serveAgentSession(fd, ctx, vault, &cfg)