From f20256bca542dfd6ba4b5e2741a6a9439cc57be8 Mon Sep 17 00:00:00 2001 From: BiggerRain <15911122312@163.COM> Date: Thu, 26 Feb 2026 21:35:45 +0800 Subject: [PATCH] chore: fix clippy warnings (#14999) --- crates/tauri-bundler/src/bundle/macos/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tauri-bundler/src/bundle/macos/app.rs b/crates/tauri-bundler/src/bundle/macos/app.rs index 703973c2b75a..c90f652d8405 100644 --- a/crates/tauri-bundler/src/bundle/macos/app.rs +++ b/crates/tauri-bundler/src/bundle/macos/app.rs @@ -136,7 +136,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result> { if matches!(e, NotarizeAuthError::MissingTeamId) { return Err(e.into()); } else { - log::warn!("skipping app notarization, {}", e.to_string()); + log::warn!("skipping app notarization, {e}"); } } }