Skip to content

Commit

Permalink
Move a log.Info() call to log.Debug()
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc M. Adkins committed Jul 30, 2024
1 parent 756f48b commit 307be8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/server/chart-score.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ var (
// scoreChart generates a chart.Chart object which is a scatter plot of
// handler benchmark vs. warning scores.
func scoreChart(k *score.Keeper, size *sizeData) chart.Chart {
slog.Info("scoreChart", "keeper", k.Tag(), "size", size)
slog.Debug("scoreChart", "keeper", k.Tag(), "size", size)
handlers := make(map[data.HandlerTag]*handlerCoords)
for _, hdlr := range bench.HandlerTags() {
// Only make handler record if y value is within bounds (above size.low.y).
Expand Down

0 comments on commit 307be8a

Please sign in to comment.