pub mod macros;
use std::io;
#[allow(unused_imports)]
#[cfg(feature = "colored")]
use crossterm::{
execute,
style::{Attribute, Color, Print, ResetColor, SetAttribute, SetForegroundColor},
};
#[cfg(feature = "persistent")]
pub mod persistent;
pub mod impls {
pub mod option_log;
pub use option_log::*;
pub mod result_log;
pub use result_log::*;
}
#[cfg(test)]
pub mod test;
pub fn log<T: AsRef<str>>(
#[cfg(feature = "colored")] _color: Color,
_prefix: &str,
_msg: T,
) -> io::Result<()> {
#[cfg(not(test))]
print_log(
#[cfg(feature = "colored")]
_color,
_prefix,
&_msg,
)?;
#[cfg(feature = "persistent")]
if persistent::check_env() {
persistent::write_log(_prefix, &_msg)?;
}
Ok(())
}
#[cfg(not(test))]
#[cfg(feature = "colored")]
fn print_log<T: AsRef<str>>(
#[cfg(feature = "colored")] color: Color,
prefix: &str,
msg: &T,
) -> io::Result<()> {
execute!(
io::stderr().lock(),
Print("["),
SetAttribute(Attribute::Bold),
SetForegroundColor(color),
Print(prefix),
ResetColor,
Print("]: "),
Print(msg.as_ref()),
Print('\n')
)
}
#[cfg(not(test))]
#[cfg(not(feature = "colored"))]
fn print_log<T: AsRef<str>>(prefix: &str, msg: T) -> io::Result<()> {
use std::io::Write;
writeln!(io::stderr().lock(), "[{prefix}]: {}", msg.as_ref()).map(|_| ())
}