Lower socket auto-discovery log from Info to Debug (#5463)

The discovery message was printing on every CLI invocation, which is
noisy for users on distros using the systemd template.
This commit is contained in:
shuuri-labs
2026-02-26 17:51:38 +01:00
committed by GitHub
parent c2c4d9d336
commit 333e045099

View File

@@ -49,7 +49,7 @@ func ResolveUnixDaemonAddr(addr string) string {
switch len(found) {
case 1:
resolved := "unix://" + found[0]
log.Infof("Default daemon socket not found, using discovered socket: %s", resolved)
log.Debugf("Default daemon socket not found, using discovered socket: %s", resolved)
return resolved
case 0:
return addr