Full Logger

Easy to use logger for Rust

Formats

INI

Full support

Example

ini [error] Y2023_M2_D21_H18_M59_S27_ML1677002367767 = Test Y2023_M2_D21_H18_M59_S27_ML1677002367775 = RESULT_OK_"Test"

TOML

Full support

Example

toml [error] Y2023_M2_D21_H18_M57_S50_ML1677002270145 = "Test" Y2023_M2_D21_H18_M57_S50_ML1677002270150 = "RESULT_OK_\"Test\""

CSV

Full support

Example

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";

Getting-Started

  1. Manage Log Files ```rust let workingdir = String::from("log"); let maxfilesize = FileSize::Mo(100); let filemanager = FileManager::new(String::from("log"), maxfilesize);

// 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)); ```

  1. Set the file format

rust // Do not need other code set_file_format(FileFormat::CSV);

  1. Time to Log ```rust let path = vec!["error", "debug"]; let message = "Test";

let mut error = Result::::Ok(12);

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); ```

  1. Enjoy

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;