Easy to use logger for Rust
Full support
ini
[error]
Y2023_M2_D21_H18_M59_S27_ML1677002367767 = Test
Y2023_M2_D21_H18_M59_S27_ML1677002367775 = RESULT_OK_"Test"
Full support
toml
[error]
Y2023_M2_D21_H18_M57_S50_ML1677002270145 = "Test"
Y2023_M2_D21_H18_M57_S50_ML1677002270150 = "RESULT_OK_\"Test\""
Full support
csv
2023-02-21 19:00:17.771215200 +01:00;error;Test;
2023-02-21 19:00:17.777826800 +01:00;error;RESULT_OK_"Test";
// Get file path to a file under maxfilesize (create one if necessary) let file = filemanager.getfile_path();
// Allow console printing setallowconsole_log(true);
// Setup simple logs setorcreategloballog_file("log", FileSize::Mo(100)); ```
rust
// Do not need other code
set_file_format(FileFormat::CSV);
let mut error = Result::
log(file, path, message); error = log_result(file, path, error);
// Or you can use the simple way (must have defined a global file before) simplelog(log, path, message); error = simplelog_result(log, path, error); ```
Here it's the result of a log calling log(file, path, message);
csv
2023-02-21 19:00:17.771215200 +01:00;error;debug;Test;