Odysseas Georgoudis
Odysseas Georgoudis
I could not reproduce on my machine. It is not possible for that simple example to crash in `1.7.0` that would mean the library is not working at all and...
are you linking your own version of lib fmt in your final application ? Just a suspicion
Are you also using your own libfmt outside the logger linking the whole program against? Can you try to link the standalone example that you say it's working with the...
`__rdtsc()` should have lower overhead. `__rdtscp()` has an additional serialising barrier, I believe I used it in benchmarks for more accurate results.
added in 404d78c7d5945dac070a0b04f7dc5cf5247ec4dd
there is also a function `to_sys_days` in the above warnings, it is defined as : ```c++ inline date::sys_days to_sys_days(std::string_view date_str, std::string_view format) { std::istringstream iss; date::sys_days s; iss.str(date_str.data()); iss >>...
i am not able to reproduce this, `DCMAKE_PREFIX_PATH` specifies installation prefixes to be searched by the `find_package()` It looks like you ran `cmake -DCMAKE_PREFIX_PATH=/home/huangyong/quill_build ..` on your own project and...
hey sorry for the late response. It is not possible to log binary raw data, the backend thread will always try to format messages to human readable string before writing...
I tried the above code on latest master and it works for me without any issues on Linux and I can see the console colours. What operating system are you...
I tried the code you provided on VS Studio 2022 and it is working for me