We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0e9c62 commit c7d9ca5Copy full SHA for c7d9ca5
1 file changed
backend/xray/jobs.go
@@ -97,6 +97,7 @@ func (x *Xray) checkXrayHealth(baseCtx context.Context) {
97
}
98
99
consecutiveFailures++
100
+ log.Printf("xray health check failure %d/%d: %v", consecutiveFailures, maxFailures, err)
101
// Only restart after multiple consecutive failures
102
if consecutiveFailures >= maxFailures {
103
log.Printf("xray health check failed %d times, restarting...", consecutiveFailures)
0 commit comments