diff --git a/coderd/aibridgedserver/cost.go b/coderd/aibridgedserver/cost.go index 1a4b0729714..623d4a85e0a 100644 --- a/coderd/aibridgedserver/cost.go +++ b/coderd/aibridgedserver/cost.go @@ -132,7 +132,7 @@ func (s *Server) resolveTokenUsageCost(ctx context.Context, intc database.AIBrid switch { case errors.Is(err, sql.ErrNoRows): // Model not in the price table: record tokens but leave cost NULL. - s.logger.Info(ctx, "no price found for model, recording token usage with NULL cost", + s.logger.Debug(ctx, "no price found for model, recording token usage with NULL cost", slog.F("provider", configuredType), slog.F("model", intc.Model)) if s.metrics != nil { s.metrics.UnpricedTokenUsageRecords.WithLabelValues(intc.ProviderName, configuredType, intc.Model).Inc()