Browse Source

Merge pull request #1773 from gravitl/feature_v0.17.0_suppress_zombie_log

changed verbosity for zombie checking log message
dcarns 2 years ago
parent
commit
e21ab61a4f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      logic/zombie.go

+ 1 - 1
logic/zombie.go

@@ -63,7 +63,7 @@ func ManageZombies(ctx context.Context) {
 				logger.Log(3, "no zombies found")
 			}
 		case <-time.After(time.Second * ZOMBIE_TIMEOUT):
-			logger.Log(0, "checking for zombie nodes")
+			logger.Log(3, "checking for zombie nodes")
 			if len(zombies) > 0 {
 				for i := len(zombies) - 1; i >= 0; i-- {
 					node, err := GetNodeByID(zombies[i])