diff options
| author | auth12 <[email protected]> | 2020-08-28 17:38:53 +0100 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-08-28 17:38:53 +0100 |
| commit | 7e3713c69802293ad03647a093b34dcd6250cb15 (patch) | |
| tree | 7d8d6a4cf6c142ab76bc5022ed23f1ef4bc2cbb2 /client/src | |
| parent | Create README.md (diff) | |
| download | loader-7e3713c69802293ad03647a093b34dcd6250cb15.tar.xz loader-7e3713c69802293ad03647a093b34dcd6250cb15.zip | |
Changed log prefixes to be more descriptive of the log entry.
Diffstat (limited to 'client/src')
| -rw-r--r-- | client/src/util/io.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 }; |