Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Jan 5, 2025
1 parent 733d8d3 commit a86a77e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,16 @@
- Removed `JsonFileSinkConfig`. Please rename it to `FileSinkConfig`, which retains the same API and is fully
compatible.
- Added `RotatingJsonFileSink`. Functions like `RotatingFileSink`, but specifically designed for rotating JSON log
files.
files. ([#637](https://github.com/odygrd/quill/issues/637))
- Simplified `ConsoleSink` by applying ANSI colour codes universally across all platforms, including Windows. The
previous Windows-specific implementation has been removed. Note that `quill::ConsoleColours` has been replaced with
`quill::ConsoleSink::Colours`, and `quill::ConsoleColours::ColourMode` has been renamed to
`quill::ConsoleSink::ColourMode`.
- Added a `StopWatch` utility for easy logging of elapsed time. It can log the time elapsed since construction in
various formats. You can use either `quill::StopWatchTsc` for high-resolution TSC-based timing or
`quill::StopWatchChrono` for standard std::chrono-based timing.
`quill::StopWatchChrono` for standard std::chrono-based timing. ([#640](https://github.com/odygrd/quill/issues/640))

For example:
```c++
#include "quill/StopWatch.h"

Expand Down
2 changes: 1 addition & 1 deletion include/quill/StopWatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace detail
* A stopwatch utility for measuring elapsed time since construction.
*
* Displays elapsed time as seconds (double) or any specified duration type.
*
*
* Can use either TSC-based or system clock-based timing, depending on the
* template parameter `ClockType`.
*
Expand Down

0 comments on commit a86a77e

Please sign in to comment.