Yoga layout working

This commit is contained in:
Antoine Pilote
2021-05-31 23:03:29 -04:00
parent 0db30d7379
commit 39aaa4cd2c
16 changed files with 605 additions and 117 deletions

View File

@@ -12,6 +12,7 @@ void Logger::Log(std::string log)
time_t now = time(0);
strftime(buff, 100, "%Y-%m-%d %H:%M:%S.000", localtime(&now));
std::string msg = "["+ std::string(buff) + "]" + std::string(" - ") + log;
printf((msg + "\n").c_str());
logs.push_back(msg);
}