Skip to content

Commit 96eb1eb

Browse files
committed
change controller debug logs to level debug
1 parent a7e774e commit 96eb1eb

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
@@ -1363,7 +1363,7 @@ func (c *Controller) Run(ctx context.Context) {
13631363
c.logger.Error(c.ctx, "failed to dial tailnet v2+ API", errF)
13641364
continue
13651365
}
1366-
c.logger.Info(c.ctx, "obtained tailnet API v2+ client")
1366+
c.logger.Debug(c.ctx, "obtained tailnet API v2+ client")
13671367
err = c.precheckClientsAndControllers(tailnetClients)
13681368
if err != nil {
13691369
c.logger.Critical(c.ctx, "failed precheck", slog.Error(err))
@@ -1372,7 +1372,7 @@ func (c *Controller) Run(ctx context.Context) {
13721372
}
13731373
retrier.Reset()
13741374
c.runControllersOnce(tailnetClients)
1375-
c.logger.Info(c.ctx, "tailnet API v2+ connection lost")
1375+
c.logger.Debug(c.ctx, "tailnet API v2+ connection lost")
13761376
}
13771377
}()
13781378
}

0 commit comments

Comments
 (0)