From 8857f31b078a851d304b23a5fa0768857a7b1c2f Mon Sep 17 00:00:00 2001 From: houseme Date: Fri, 22 Aug 2025 21:15:46 +0800 Subject: [PATCH] Comment out error log for missing subscribers (#448) --- crates/notify/src/global.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/notify/src/global.rs b/crates/notify/src/global.rs index dd293d1c1..e8a70b06c 100644 --- a/crates/notify/src/global.rs +++ b/crates/notify/src/global.rs @@ -86,7 +86,7 @@ impl Notifier { // Check if any subscribers are interested in the event if !notification_sys.has_subscriber(&args.bucket_name, &args.event_name).await { - error!("No subscribers for event: {} in bucket: {}", args.event_name, args.bucket_name); + // error!("No subscribers for event: {} in bucket: {}", args.event_name, args.bucket_name); return; }