From 523fdf183495181ba31203b0fa97d137e7df6812 Mon Sep 17 00:00:00 2001 From: Allstreamer <48365544+Allstreamer@users.noreply.github.com> Date: Sun, 3 Apr 2022 20:15:46 +0200 Subject: [PATCH] Update README.md - Forgot to update the example in readme.md oops --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 456f2a6..599ddd4 100644 --- a/README.md +++ b/README.md @@ -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}; // Log Out To Standard Output -trace!("My Best Friend Hazel :D"); -debug!("My Best Friend Hazel :D"); -info!("My Best Friend Hazel :D"); -warn!("My Best Friend Hazel :D"); -error!("My Best Friend Hazel :D"); -fatal!("My Best Friend Hazel :D"); +trace!("My Best Friend Hazel {}", ":D"); +debug!("My Best Friend Hazel {}", ":D"); +info!("My Best Friend Hazel {}", ":D"); +warn!("My Best Friend Hazel {}", ":D"); +error!("My Best Friend Hazel {}", ":D"); +fatal!("My Best Friend Hazel {}", ":D"); ``` ### Windows Output