| Crates.io | azathoth_logger |
| lib.rs | azathoth_logger |
| version | 0.1.2 |
| created_at | 2025-08-17 05:51:58.401997+00 |
| updated_at | 2025-08-17 06:49:30.456991+00 |
| description | Logger used by the AzathothC2 framework |
| homepage | |
| repository | https://github.com/AzathothC2/azathoth_logger |
| max_upload_size | |
| id | 1799146 |
| size | 13,471 |
A Logging crate for no-std environments used by the AzathothC2 framework
[!WARNING] This crate is not the same as
az_logger, although they do export the same macros!
Using the logger requires initializing the static logger:
fn main() {
if unsafe { !azathoth_logger::LOG.init() } {
return; // Failed
}
azathoth_logger::success!("Hello world!");
}
Add the crate via Cargo:
cargo add azathoth_libload
Or manually in Cargo.toml: azathoth_libload = "0.1.0";
MIT