From 7e3713c69802293ad03647a093b34dcd6250cb15 Mon Sep 17 00:00:00 2001 From: auth12 <67507608+auth12@users.noreply.github.com> Date: Fri, 28 Aug 2020 17:38:53 +0100 Subject: Changed log prefixes to be more descriptive of the log entry. --- client/src/util/io.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src/util') diff --git a/client/src/util/io.h b/client/src/util/io.h index 99339c5..ab48b90 100644 --- a/client/src/util/io.h +++ b/client/src/util/io.h @@ -12,7 +12,7 @@ namespace io { #ifndef _REL static auto handle = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(handle, FOREGROUND_GREEN); - fmt::print("$> "); + fmt::print("[+] "); SetConsoleTextAttribute(handle, FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_RED); std::string msg{ str }; @@ -27,7 +27,7 @@ namespace io { #ifndef _REL static auto handle = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(handle, FOREGROUND_RED); - fmt::print("$> "); + fmt::print("[!] "); SetConsoleTextAttribute(handle, FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_RED); std::string msg{ str }; -- cgit v1.2.3