diff --git a/network/health/tracker.go b/network/health/tracker.go
index 1e6dfdd97a0087d304f942ae2c6c3c0edf8f1991..7d5b6a7d9c36edd2723685276c385c114b20bc13 100644
--- a/network/health/tracker.go
+++ b/network/health/tracker.go
@@ -191,8 +191,10 @@ func (t *Tracker) start(stop *stoppable.Single) {
 				t.setHealth(true)
 			}
 		case <-timer.C:
+			if !t.isHealthy {
+				jww.WARN.Printf("Network health tracker timed out, network is no longer healthy...")
+			}
 			t.setHealth(false)
-			return
 		}
 	}
 }