Update README.md

- Forgot to update the example in readme.md
oops
pull/3/head
Allstreamer 3 years ago
parent b473b1f598
commit 523fdf1834

@ -28,12 +28,12 @@ This is to allow hassle-free and painless setup that will let you log instantly!
use rall::{debug, error, fatal, info, trace, warn}; use rall::{debug, error, fatal, info, trace, warn};
// Log Out To Standard Output // Log Out To Standard Output
trace!("My Best Friend Hazel :D"); trace!("My Best Friend Hazel {}", ":D");
debug!("My Best Friend Hazel :D"); debug!("My Best Friend Hazel {}", ":D");
info!("My Best Friend Hazel :D"); info!("My Best Friend Hazel {}", ":D");
warn!("My Best Friend Hazel :D"); warn!("My Best Friend Hazel {}", ":D");
error!("My Best Friend Hazel :D"); error!("My Best Friend Hazel {}", ":D");
fatal!("My Best Friend Hazel :D"); fatal!("My Best Friend Hazel {}", ":D");
``` ```
### Windows Output ### Windows Output

Loading…
Cancel
Save