Crates.io | rustic-logger |
lib.rs | rustic-logger |
version | 0.1.2 |
source | src |
created_at | 2023-04-01 08:31:10.480831 |
updated_at | 2023-04-02 04:44:39.811366 |
description | RusticLogger: because life is too short to debug without logs! |
homepage | https://github.com/adamcanray/rustic-logger |
repository | https://github.com/adamcanray/rustic-logger |
max_upload_size | |
id | 827172 |
size | 6,566 |
RusticLogger is a simple logging app built with Rust. It allows users to log messages with different severity levels and store them in a file.
Add the following line to your Cargo.toml file:
[dependencies]
rustic-logger = "0.1.2"
Basic usage
use rustic_logger::log;
fn main() {
log(
"app-log.log",
"An error occurred",
None,
None
).unwrap();
}
// [2023-04-01 16:38:40,258] An error occurred
With severity
levels
use rustic_logger::log;
fn main() {
log(
"app-log.log",
"Successfully insert data",
Some(rustic_logger::TSeverity::DEBUG),
None,
)
}
// DEBUG [2023-04-02 11:24:45,662] successfully insert data
Custom timestamp format by passing time_format
use rustic_logger::log;
fn main() {
let filename = "app-log.txt";
let time_format = Some("%a, %b %d %Y %I:%M:%S %p");
log(
filename,
"Successfully insert new user",
None,
time_format
).unwrap();
}
// [Sat, Apr 01 2023 04:38:40 PM] Successfully insert new user
log(filename: &'static str, entry: &'static str, severity: Option<TSeverity>, time_format: Option<&'static str>) -> io::Result<String>
This function logs the given entry message to the specified filename with an optional severity and an optional custom time_format timestamp format. The function returns the formatted string.
Contributions are welcome! If you want to contribute to RusticLogger, please fork this repository and submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.