refact: remove unnecessary printing (#12000)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
@@ -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) => {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user