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 09:16:49 -04:00 committed by GitHub
parent 848a86a385
commit a65c0b2bff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
);