fix(ci): allow dead code in buffered_writer & tracing_buffer for desktop non-windows checks

This commit is contained in:
Ryan Walters
2025-09-04 16:15:11 -05:00
parent 2d36d49b13
commit 639977e458
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
#![allow(dead_code)]
//! Buffered writer for tracing logs that can store logs before console attachment.
use parking_lot::Mutex;

View File

@@ -1,3 +1,5 @@
#![allow(dead_code)]
//! Buffered tracing setup for handling logs before console attachment.
use crate::platform::buffered_writer::BufferedWriter;