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 1553fbb commit 09a60f8Copy full SHA for 09a60f8
src/usb_gadget.rs
@@ -67,7 +67,7 @@ impl UsbGadgetState {
67
if let Ok(entries) = fs::read_dir(&udc_dir) {
68
for entry in entries {
69
if let Ok(entry) = entry {
70
- debug!("Using UDC: {:?}", entry.file_name());
+ info!("Using UDC: {:?}", entry.file_name());
71
if let Ok(fname) = entry.file_name().into_string() {
72
state.udc_name.push_str(fname.as_str());
73
break;
0 commit comments