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.
2 parents 5a5b4a9 + 54bebcd commit a17e0bcCopy full SHA for a17e0bc
.github/workflows/rust.yml
@@ -27,5 +27,7 @@ jobs:
27
toolchain: ${{ matrix.rust }}
28
- name: Build
29
run: cargo build --no-default-features --features ${{matrix.features}} --verbose
30
+ env:
31
+ DEFMT_LOG: debug
32
- name: Run Tests
33
run: cargo test --no-default-features --features ${{matrix.features}} --verbose
src/fat/volume.rs
@@ -594,7 +594,7 @@ impl FatVolume {
594
debug!("LFN Contents {start} {sequence} {csum:02x} {buffer:04x?}");
595
#[cfg(feature = "defmt-log")]
596
debug!(
597
- "LFN Contents {=u8} {=u8} {=u8:02x} {=[?; 13]:#04x}",
+ "LFN Contents {=bool} {=u8} {=u8:02x} {=[?; 13]:#04x}",
598
start, sequence, csum, buffer
599
);
600
match (start, sequence, self) {
0 commit comments