From 04f5b1b0155178494fb2fbb3222b33f0bebe4b62 Mon Sep 17 00:00:00 2001 From: AK Date: Thu, 16 Jul 2026 13:16:59 +0300 Subject: [PATCH] chore: trim redundant function name from warn log --- crates/uad-core/src/adb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uad-core/src/adb.rs b/crates/uad-core/src/adb.rs index c160509..f2335e0 100644 --- a/crates/uad-core/src/adb.rs +++ b/crates/uad-core/src/adb.rs @@ -372,7 +372,7 @@ impl PmCommand { if PackageId::new(p).is_some() { Some(String::from(p)) } else { - warn!("list_packages_sys: skipping nonstandard package name: {p:?}"); + warn!("skipping nonstandard package name: {p:?}"); None } })