From 28e89bf256fc55ec5bffe050bb0fc329d28e8de1 Mon Sep 17 00:00:00 2001 From: aeon Date: Tue, 9 Apr 2024 21:37:39 +0800 Subject: [PATCH] [r2r_common] Remove println!() that taints the build script output --- r2r_common/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/r2r_common/src/lib.rs b/r2r_common/src/lib.rs index a2fd750..d9bccfb 100644 --- a/r2r_common/src/lib.rs +++ b/r2r_common/src/lib.rs @@ -315,7 +315,6 @@ fn get_msgs_from_package(package: &Path) -> Vec { &l[7..l.len() - 4] // .idl }; let action_name = format!("{}/action/{}", file_name_str, substr); - println!("found action: {}", action_name); msgs.push(action_name); } }