Skip to content

Commit

Permalink
console sink
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Nov 2, 2024
1 parent 9e04ec4 commit d20eb35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/quill/sinks/ConsoleSink.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class ConsoleColours
}

private:
std::array<WORD, 10> _colours = {0}; /**< Colours per log level */
std::array<WORD, 11> _colours = {0}; /**< Colours per log level */
bool _using_colours{false};
bool _can_use_colours{false};
};
Expand Down Expand Up @@ -344,7 +344,7 @@ class ConsoleColours
}

private:
std::array<std::string_view, 10> _colours; /**< Colours per log level */
std::array<std::string_view, 11> _colours; /**< Colours per log level */
bool _using_colours{false};
bool _can_use_colours{false};
};
Expand Down

0 comments on commit d20eb35

Please sign in to comment.