Odysseas Georgoudis
Odysseas Georgoudis
Does something like this work ? I haven't tested the code ```c++ #include #include #include #include #include int main() { // Set up the custom timestamp (in microseconds since the...
I read somewhere while searching that it might be able to overpass that restriction with sd_journal_sendv but i haven’t tried it
This seems related by the way https://github.com/systemd/systemd/issues/10301
Thanks for taking the time for a proof of concept. This functionality is nice, but implementing the counter isn't straightforward. Since the library writes to log files without revising them,...
Yes all the current sinks just write to the file or console and never overwrite looking backwards. That happens inside write_log tho so it’s possible to seek back and overwrite...
Hey thanks for reporting, that is surprising we have a test for this and is currently passing all CI https://github.com/odygrd/quill/blob/412051106e2a89865bb1158f30609ce5bb98de6e/test/integration_tests/MultipleSinksSameLoggerTest.cpp#L49 I will try with the sample code you provided and...
I have tried debug/release builds with version `7.3.0` for static and shared library and can not reproduce on MSVC 19.39.33523.0 Please see branch `7.3.0_issue608` https://github.com/odygrd/quill/compare/v7.3.0...7.3.0_issue608 For static linking : https://github.com/odygrd/quill/blob/7.3.0_issue608/examples/console_logging.cpp...
can this be related to this https://github.com/odygrd/quill/issues/479 ? Are you using an old version like `4.0.0` that had a bug there ?
Hey, libfmt named arguments are not supported in the same way as in libfmt. The reason is because quill is internally using them also for switching to the json structured...
Currently not, it is a header only library so all you need is to copy the `include` folder of this repo, you do not need to build anything. It is...