From a65c0b2bfffd8092fa4db4c54e5add9b54bb5386 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 15 Jul 2025 09:16:49 -0400 Subject: [PATCH] collab: Fix typo in log message (#34455) This PR fixes a small typo in a log message. Release Notes: - N/A --- crates/collab/src/api/billing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/collab/src/api/billing.rs b/crates/collab/src/api/billing.rs index 77ed9a9ea88504506d058eb0762914620326cc54..00688a1e82be056a06e08a84013d4e95474bc971 100644 --- a/crates/collab/src/api/billing.rs +++ b/crates/collab/src/api/billing.rs @@ -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 );