https://github.com/greyireland/logo
https://github.com/greyireland/logo
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/greyireland/logo
- Owner: greyireland
- Created: 2023-09-16T11:05:09.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-14T03:42:21.000Z (over 1 year ago)
- Last Synced: 2024-09-15T03:49:07.843Z (about 1 year ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# logo
quick init log env
### quickstart
```
cargo add logo
logo.init_prod();// init prod env
info!("hello {:?}", "world");
//write to logs/xxx-20321212.log
//2023-09-16 19:28:30.572+08 0ms INFO hello world
logo.init_debug(); // init debug env
//write to stdout
```