Skip to content

v3.2.0

Compare
Choose a tag to compare
@odygrd odygrd released this 10 Jul 00:07
· 440 commits to master since this release
  • Addition of std::is_trivially_copyable<T> to default copy loggable types. (#318)
  • By default, the static library now builds with -fPIC to generate position-independent code.
    To disable this feature, you can use the CMake option QUILL_DISABLE_POSITION_INDEPENDENT_CODE.
  • The LOG_<LEVEL>_LIMIT macros now support using std::chrono duration types for specifying the log interval.
    Instead of providing a raw number, you can use:
    LOG_INFO_LIMIT(std::chrono::milliseconds {100} , quill::get_logger(), "log message");