From 35a2dbcabb1e50c04bafcf19832aaaba4a0eb7ee Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sun, 4 Oct 2020 16:31:51 -0700 Subject: [PATCH] healthcheck: bump logging for failed healthchecks to info In this commit, we bump up the logging for failed healthchecks from `debug` to `info`. This should help us get to the bottom of the current set of reported false positives that are causing `lnd` nodes to erroneously shutdown. --- healthcheck/healthcheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthcheck/healthcheck.go b/healthcheck/healthcheck.go index a1f7864a..8f92d9aa 100644 --- a/healthcheck/healthcheck.go +++ b/healthcheck/healthcheck.go @@ -215,7 +215,7 @@ func (o *Observation) retryCheck(quit chan struct{}, shutdown shutdownFunc) { return } - log.Debugf("Health check: %v, call: %v failed with: %v, "+ + log.Infof("Health check: %v, call: %v failed with: %v, "+ "backing off for: %v", o, count, err, o.Backoff) // If we are still within the number of calls allowed for this