p2p_chat/logging/mod.rs
1//! This module contains the logging infrastructure for the application.
2//!
3//! It includes a `tracing` layer for collecting logs and a buffer for storing
4//! them and sending them to the UI in batches.
5pub mod buffer;
6pub mod collector;
7
8pub use buffer::LogBuffer;
9pub use collector::TUILogCollector;