Odysseas Georgoudis

Results 98 comments of Odysseas Georgoudis

Hey, sorry for the late response. I can confirm that your example is not working. I would prefer to keep the code handling wide strings minimal as it is windows...

Also can you try this example please ? Does it work ? ```c++ quill::start(); quill::FileHandlerConfig fileConfig; fileConfig.set_append_to_filename(quill::FilenameAppend::StartDateTime); fileConfig.set_open_mode('w'); fileConfig.set_timezone(quill::Timezone::LocalTime); std::string utf8Path = "C:/Кузьма/log.txt"; auto mxFile_handler = quill::file_handler(utf8Path, fileConfig); auto logger...

I was saving the .cpp example file as utf8, when i started saving it with encoding utf16 i noticed that the above examples I asked you to try do not...

default log level is `INFO` you need to change it first with `quill::get_root_logger()->set_log_level(quill::LogLevel::TraceL3);` Setting the log level is the handler as you are doing in line 22 is not the...

some gtest death tests are using `fork()`. Can you check if that is the case ? Are you using death tests? https://github.com/odygrd/quill?tab=readme-ov-file#-caveats Update: I just saw the update, glad you...

sorry for the delay ... The problem doing this is that you are formatting everything in the thread that is issuing the log. The library is designed to reduce the...

Closing this for now. If you encounter any issues, feel free to reach out - happy to assist.

They were removed in v3.8.0 https://github.com/odygrd/quill/blob/master/CHANGELOG.md#v380 The reason is that they were generating extra template instantiations for each log message and also that the exception is being caught by the...

This is an issue in the library that pulls a lot of headers. There is some major work is process to solve that in https://github.com/odygrd/quill/tree/experiment see https://github.com/odygrd/quill/blob/experiment/CHANGELOG.md where you can...

Hopefully within the next 3 weeks. It was ready with tests passing. But the removal of user defined types also removed the support for std types requiring them to also...