Skip to content

Commit

Permalink
fix(socketproxy): Downgrade warning to info for removing socket file
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Bluhm <[email protected]>
  • Loading branch information
mbssrc committed Jan 10, 2025
1 parent a88b0c9 commit 0780b02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/pkgs/socketproxy/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NewSocketProxyController(socket string, runAsServer bool) (*SocketProxyCont
// Remove socket file if it exists
err := os.Remove(socket)
if err != nil {
log.Warnf("Error removing socket: %v", err)
log.Infof("Cannot remove socket: %v", err)
}

// Listen on unix socket
Expand Down

0 comments on commit 0780b02

Please sign in to comment.