We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5c056 commit 08de49dCopy full SHA for 08de49d
services/shellchat/src/cmds/test.rs
@@ -666,7 +666,9 @@ impl<'a> ShellCmdApi<'a> for Test {
666
}
667
668
"hpstate" => {
669
- write!(ret, "HP state: {:?}", self.codec.poll_headphone_state()).ok();
+ let state = self.codec.poll_headphone_state();
670
+ log::info!("{:?}", state);
671
+ write!(ret, "{:?}", state).ok();
672
673
"ecup" => {
674
let ecup_conn = env.xns.request_connection_blocking("__ECUP server__").unwrap();
0 commit comments