Skip to main content

stylex_logs/
lib.rs

1pub mod constants;
2pub mod formatter;
3pub mod initializer;
4
5#[cfg(test)]
6mod tests {
7  use ctor::ctor;
8
9  #[ctor]
10  fn init_logger() {
11    pretty_env_logger::formatted_builder().try_init();
12  }
13}