1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#![no_std]

mod scsi;
pub use scsi::*;

mod block_device;
pub use block_device::*;

mod logging {
    pub use itm_logger::*;

    #[cfg(feature = "trace-scsi-command")]
    pub use itm_logger::trace as trace_scsi_command;
    #[cfg(not(feature = "trace-scsi-command"))]
    pub use itm_logger::stub as trace_scsi_command;
    
    #[cfg(feature = "trace-scsi-fs")]
    pub use itm_logger::trace as trace_scsi_fs;
    #[cfg(not(feature = "trace-scsi-fs"))]
    pub use itm_logger::stub as trace_scsi_fs;
}