Skip to content

Commit 6f50dd6

Browse files
committed
udc info log: fix cosmetics
1 parent 2e11eef commit 6f50dd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/usb_gadget.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ impl UsbGadgetState {
7272
if let Ok(entries) = fs::read_dir(&udc_dir) {
7373
for entry in entries {
7474
if let Ok(entry) = entry {
75-
info!("Using UDC: {:?}", entry.file_name());
75+
info!("{} Using UDC: {:?}", NAME, entry.file_name());
7676
if let Ok(fname) = entry.file_name().into_string() {
7777
state.udc_name.push_str(fname.as_str());
7878
break;

0 commit comments

Comments
 (0)