Add trace logs for handshake registration
This commit is contained in:
parent
9fcc02ef5b
commit
2070712b50
1 changed files with 2 additions and 0 deletions
|
@ -127,6 +127,7 @@ macro_rules! handshake_register {
|
||||||
($obj: ident, $func: ident, $subsystem: expr, $type: expr, $name: expr) => {
|
($obj: ident, $func: ident, $subsystem: expr, $type: expr, $name: expr) => {
|
||||||
if $obj.$func() {
|
if $obj.$func() {
|
||||||
println!("register|{}|{}|{}", $type, $subsystem.to_string(), $name);
|
println!("register|{}|{}|{}", $type, $subsystem.to_string(), $name);
|
||||||
|
log::trace!("{} {} for {} registered", $type, $name, $subsystem.to_string());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -194,4 +195,5 @@ where
|
||||||
|
|
||||||
// Ready
|
// Ready
|
||||||
println!("register|ready");
|
println!("register|ready");
|
||||||
|
log::trace!("register ready");
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue