mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-27 07:24:23 +08:00
changed verbosity for zombie checking log message
This commit is contained in:
parent
2a69df0979
commit
50a1c3a018
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||
|
|
Loading…
Add table
Reference in a new issue