From 5ca067ea2697cbd3688710a2c64bb4a987dd8533 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Mon, 6 May 2024 19:14:44 +0200 Subject: [PATCH] remove ... from log --- src/client/youtube/flow_delegate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/youtube/flow_delegate.rs b/src/client/youtube/flow_delegate.rs index e97b0df..7c3bfca 100644 --- a/src/client/youtube/flow_delegate.rs +++ b/src/client/youtube/flow_delegate.rs @@ -91,7 +91,7 @@ impl CustomFlowDelegate { async fn send_notification(message: String) { let notifier_url = &crate::CONF.notifier.notifier_url; - trace!("sending notification at: {}...", notifier_url); + trace!("sending notification at: {}", notifier_url); let response = reqwest::Client::new() .post(notifier_url) .json(&NotificationRequest { message })