add more logging

This commit is contained in:
MihailRis 2024-06-12 00:22:47 +03:00
parent ea858f4049
commit 4f8bf22ef1

View File

@ -13,9 +13,12 @@ static debug::Logger logger("main");
int main(int argc, char** argv) {
debug::Logger::init("latest.log");
logger.info() << "start of the log (argc=" << argc << ")";
EnginePaths paths;
if (!parse_cmdline(argc, argv, paths))
return EXIT_SUCCESS;
logger.info() << "configuring encoding";
platform::configure_encoding();
try {