feat: add formatting to getDebugTime

This commit is contained in:
3lswear
2022-02-27 18:13:32 +03:00
parent 6341d4d47f
commit 89695470cb

View File

@@ -33,7 +33,9 @@ std::string getDebugTime(void)
} }
ret.erase(ret.find(" ")); ret.erase(ret.find(" "));
ret = std::string(WARNING) + "[ " + ret + " ] " + std::string(RESET); ret = std::string(WARNING) + "[ " + ret + " ] "
+ std::string(RESET)
+ std::string(OKCYAN);
return (ret); return (ret);
} }