Skip to content

Commit ed8ae5e

Browse files
committed
change controller debug logs to level debug
1 parent e7a48da commit ed8ae5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tailnet/controllers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ func (c *Controller) Run(ctx context.Context) {
13701370
c.logger.Error(c.ctx, "failed to dial tailnet v2+ API", errF)
13711371
continue
13721372
}
1373-
c.logger.Info(c.ctx, "obtained tailnet API v2+ client")
1373+
c.logger.Debug(c.ctx, "obtained tailnet API v2+ client")
13741374
err = c.precheckClientsAndControllers(tailnetClients)
13751375
if err != nil {
13761376
c.logger.Critical(c.ctx, "failed precheck", slog.Error(err))
@@ -1379,7 +1379,7 @@ func (c *Controller) Run(ctx context.Context) {
13791379
}
13801380
retrier.Reset()
13811381
c.runControllersOnce(tailnetClients)
1382-
c.logger.Info(c.ctx, "tailnet API v2+ connection lost")
1382+
c.logger.Debug(c.ctx, "tailnet API v2+ connection lost")
13831383
}
13841384
}()
13851385
}

0 commit comments

Comments
 (0)