From: Ondrej Fabry Date: Wed, 11 Apr 2018 23:32:44 +0000 (+0200) Subject: Add warning message when health check fails X-Git-Tag: v0.1.0~63 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=e7cec91c8720eddd1ccff3403099b60ee3da0ccd;p=govpp.git Add warning message when health check fails Change-Id: I89d465ec9395eeb298a6ca209a8a0fff9107674e Signed-off-by: Ondrej Fabry --- diff --git a/core/core.go b/core/core.go index ebe7f68..6714f6f 100644 --- a/core/core.go +++ b/core/core.go @@ -302,13 +302,14 @@ func (c *Connection) healthCheckLoop(connChan chan ConnectionEvent) { if err != nil { failedChecks++ + log.Warnf("VPP health check failed (%d. time): %v", failedChecks, err) } else { failedChecks = 0 } if failedChecks > healthCheckThreshold { // in case of error, break & disconnect - log.Errorf("VPP health check failed: %v", err) + log.Errorf("Number of VPP health check fails exceeded treshold (%d)", healthCheckThreshold, err) // signal disconnected event via channel connChan <- ConnectionEvent{Timestamp: time.Now(), State: Disconnected} break