Skip to content

Commit

Permalink
Update usb_utils.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Benji377 committed Sep 25, 2024
1 parent 696af71 commit 46cd1a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/backend/utils/usb_utils.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
use std::{fmt::Display, path::PathBuf};

use log::{debug, info,warn};
#[cfg(not(target_os = "windows"))]
use log::debug;
#[cfg(target_os = "windows")]
use log::{debug, info, warn};
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, Hash, Default)]
Expand Down

0 comments on commit 46cd1a7

Please sign in to comment.