echo_log

Crates.ioecho_log
lib.rsecho_log
version0.1.1
sourcesrc
created_at2023-06-27 09:33:24.63552
updated_at2023-06-27 09:47:11.276354
descriptionSimple cross-thread log library for windows
homepage
repositoryhttps://gitee.com/w-8/echo_log
max_upload_size
id901168
size4,344
(MDZZDYXCMDZZDYXC)

documentation

README

Simple cross-thread log library for windows

echo_log::init("233.txt");
echo_log::echo("Hello Hello");
echo_log::init("233.txt");
std::thread::spawn(||{
    for idx in 0..5000{
        echo_log::echo(format!("{} --thread",idx));
    }
})
for idx in 0..5000{
    echo_log::echo("{} --",idx);
}
use logstr;
echo_log::init(&logstr::logname());
echo_log::echo(logstr::e("Bad Bad!"));
Commit count: 0

cargo fmt