Remove debug print

This commit is contained in:
Phillip Stephens 2020-09-05 18:33:18 -07:00
parent b28b19732e
commit aed27089b9
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
1 changed files with 0 additions and 1 deletions

View File

@ -168,7 +168,6 @@ int main(int argc, const boo::SystemChar** argv)
hecl::SystemString logFilePath; hecl::SystemString logFilePath;
if (!logFile.empty()) { if (!logFile.empty()) {
logFilePath = fmt::format(FMT_STRING(_SYS_STR("{}/{}")), fileMgr.getStoreRoot(), logFile); logFilePath = fmt::format(FMT_STRING(_SYS_STR("{}/{}")), fileMgr.getStoreRoot(), logFile);
fmt::print(FMT_STRING("{}\n"), logFilePath);
logvisor::RegisterFileLogger(logFilePath.c_str()); logvisor::RegisterFileLogger(logFilePath.c_str());
} }