collab: Fix typo in log message (#34455)

This PR fixes a small typo in a log message.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers
2025-07-15 13:16:49 +00:00
committed by GitHub
parent 848a86a385
commit a65c0b2bff
+1 -1
View File
@@ -1428,7 +1428,7 @@ async fn sync_model_request_usage_with_stripe(
let get_zed_pro_subscriptions_started_at = Utc::now();
let billing_subscriptions = app.db.get_active_zed_pro_billing_subscriptions().await?;
log::info!(
"Stripe usage sync: Retrieved {} Zed pro subscriptions in {}",
"Stripe usage sync: Retrieved {} Zed Pro subscriptions in {}",
billing_subscriptions.len(),
Utc::now() - get_zed_pro_subscriptions_started_at
);