tt4g
tt4g
The `level_filter` constructor for backward compatibility should be modified as follows: ```diff // For backward-compatibility - level_filter(level_enum level) { - return level_filter::more_severe_equal(level); - } + level_filter(level_enum level) : level_filter(condition::more_severe_equal, level)...
IMO. If this feature is added, someone will want equivalent features in the following APIs: - `spdlog::logger::set_level()` - `spdlog::logger::flush_on()` --- `spdlog::sink::level()` API returns the log level, so we need to...
@cppcooper No PR has implemented this proposal.
Please provide the code at line 28 of `server_main.cpp` and the compiler version information you are using.
The root cause of the error appears to be that gcc does not recognize the syntax correctly. Do you have C++11 or higher enabled? Also, are you using the latest...
> Note: in my case, when the error happened, Docker killed also other containers that were running on my system (not very good 😓)... maybe a Docker bug? @darioleanbit Yes....
@dawagner I am not the maintainer of this repository, so I cannot give an official answer. You need to ask @gabime for the answer.
I think the current rotation implementation is wrong. `minute_file_sink` rotates at intervals (minutes). However, the daily sink and hourly sink rotate at a specified time (hour or minute). If you...
> Only sink name change required? hope the other implemented logic and suggestions are fixed? Did you not develop this sink because you wanted it? If you wanted this sink...
What "scrolling"? Do you want to say "rotation"? As long as `rotating_file_sink_mt` is used, no rotation should occur during file writing. How can I reproduce this?