diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2018-04-12 01:32:44 +0200 |
---|---|---|
committer | Ondrej Fabry <ofabry@cisco.com> | 2018-04-12 01:32:44 +0200 |
commit | e7cec91c8720eddd1ccff3403099b60ee3da0ccd (patch) | |
tree | c07e12b61d8858265bd712356b50b747c5e26137 | |
parent | 392a56b700fa6715d091e56c49f79bfe32613fc6 (diff) |
Add warning message when health check fails
Change-Id: I89d465ec9395eeb298a6ca209a8a0fff9107674e
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
-rw-r--r-- | core/core.go | 3 |
1 files changed, 2 insertions, 1 deletions
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 |