feat: fix emscripten browser logging, streamline console initialization and logging

This commit is contained in:
Ryan Walters
2025-09-04 14:07:24 -05:00
parent 0759019c8b
commit 968eb39b64
5 changed files with 67 additions and 33 deletions

View File

@@ -1,10 +1,12 @@
//! Platform abstraction layer for cross-platform functionality.
pub mod buffered_writer;
pub mod tracing_buffer;
#[cfg(not(target_os = "emscripten"))]
pub mod buffered_writer;
#[cfg(not(target_os = "emscripten"))]
mod desktop;
#[cfg(not(target_os = "emscripten"))]
pub mod tracing_buffer;
#[cfg(not(target_os = "emscripten"))]
pub use desktop::*;
#[cfg(target_os = "emscripten")]