Minor fixes

This commit is contained in:
Lion Kortlepel
2020-11-08 01:31:34 +01:00
parent fe6cfd027e
commit a42ab67d2f
3 changed files with 54 additions and 6 deletions

View File

@@ -45,7 +45,13 @@ std::string getDate() {
<< Hour << ":"
<< Min << ":"
<< Secs
<< "] ";
<< "] "
#ifdef DEBUG
<< std::this_thread::get_id()
<< " ";
#else
;
#endif
return date.str();
}
void InitLog() {