Skip to content

Commit

Permalink
Upgrade connection failure from debug to info (#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
thom-at-redhat authored Oct 24, 2024
1 parent 234c21b commit 616f38b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/workceptor/remote_work.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (rw *remoteUnit) getConnection(ctx context.Context) (net.Conn, *bufio.Reade
if err == nil {
return conn, reader
}
rw.GetWorkceptor().nc.GetLogger().Debug("Connection to %s failed with error: %s",
rw.GetWorkceptor().nc.GetLogger().Info("Connection to %s failed with error: %s",
rw.Status().ExtraData.(*RemoteExtraData).RemoteNode, err)
errStr := err.Error()
if strings.Contains(errStr, "CRYPTO_ERROR") {
Expand Down

0 comments on commit 616f38b

Please sign in to comment.