Skip to content

Commit c9272c5

Browse files
committed
lower log level to debug for start/stop
1 parent 37d06e3 commit c9272c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coderd/workspaceapps/stats.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,9 @@ func (sc *StatsCollector) Close() error {
367367
func (sc *StatsCollector) start() {
368368
defer func() {
369369
close(sc.done)
370-
sc.opts.Logger.Info(sc.ctx, "workspace app stats collector stopped")
370+
sc.opts.Logger.Debug(sc.ctx, "workspace app stats collector stopped")
371371
}()
372-
sc.opts.Logger.Info(sc.ctx, "workspace app stats collector started")
372+
sc.opts.Logger.Debug(sc.ctx, "workspace app stats collector started")
373373

374374
t := time.NewTimer(sc.opts.ReportInterval)
375375
defer t.Stop()

0 commit comments

Comments
 (0)