refact: remove unnecessary printing (#12000)

Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
fufesou
2025-06-06 14:52:01 +08:00
committed by GitHub
parent e79724644d
commit 8b2643e060
3 changed files with 0 additions and 3 deletions

View File

@@ -48,7 +48,6 @@ macro_rules! make_lib_wrapper {
$(let $field = if let Some(lib) = &lib {
match unsafe { lib.symbol::<$tp>(stringify!($field)) } {
Ok(m) => {
log::info!("method found {}", stringify!($field));
Some(*m)
},
Err(e) => {

View File

@@ -186,7 +186,6 @@ macro_rules! make_plugin {
$(let $field = match unsafe { lib.symbol::<$tp>(stringify!($field)) } {
Ok(m) => {
log::debug!("{} method found {}", path, stringify!($field));
*m
},
Err(e) => {

View File

@@ -50,7 +50,6 @@ macro_rules! make_lib_wrapper {
$(let $field = if let Some(lib) = &lib {
match unsafe { lib.symbol::<$tp>(stringify!($field)) } {
Ok(m) => {
log::info!("method found {}", stringify!($field));
Some(*m)
},
Err(e) => {