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 b20beea commit 5965b0dCopy full SHA for 5965b0d
machine/src/lib.rs
@@ -229,6 +229,7 @@ where
229
230
let ctrl_task = async {
231
while let Some(ctrl) = ctrl.next().await {
232
+ log::debug!("{} CTRL {:?}", id, ctrl);
233
match ctrl {
234
IfaceCtrl::Up => iface.get_ref().put_up()?,
235
IfaceCtrl::Down => iface.get_ref().put_down()?,
@@ -303,7 +304,7 @@ where
303
304
let mut buf = Vec::with_capacity(4096);
305
while let Some(cmd) = cmd.next().await {
306
buf.clear();
- log::trace!("{}", cmd);
307
+ log::debug!("{} {}", id, cmd);
308
writeln!(buf, "{}", cmd)?;
309
stdin.write_all(&buf).await?;
310
}
0 commit comments