edwardium_logger 1.2.2

Another simple logger implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains provided implementations of logging targets.

pub mod util;

#[cfg(feature = "file_target")]
pub mod file;
#[cfg(feature = "stderr_target")]
pub mod stderr;
#[cfg(feature = "stdout_target")]
pub mod stdout;

#[cfg(feature = "uart_target")]
pub mod uart;