Payload config, disable all logs feature

This commit is contained in:
Michael Mikovsky
2025-11-23 22:40:06 -07:00
parent f34ac017ce
commit 11045522b8
8 changed files with 81 additions and 10 deletions
+6
View File
@@ -1,4 +1,10 @@
// Choose if the macros are enabled based on the feature setting
#[cfg(feature = "log")]
pub mod macros;
#[cfg(not(feature = "log"))]
pub mod macros_disabled;
mod pretty_logger;
use std::time::SystemTime;