summaryrefslogtreecommitdiffstats
path: root/src/LoggerSimple.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-16Enable debug logging in test buildsPeter Bell1-2/+2
2020-05-16Update logging code to reduce unnecessary string copying:Peter Bell1-24/+37
* Write into a single fmt::memory_buffer * Use string_view instead of AString for listener callbacks * Also collapsed vFLOG and vLOG functions into one per formatting type
2020-05-05Update fmt to 6.2.0 (#4718)peterbell101-22/+54
* Update fmt to 6.2.0
2018-01-03Add the fmt library (#4065)peterbell101-0/+51
* Replaces AppendVPrintf with fmt::sprintf * fmt::ArgList now used as a type safe alternative to varargs. * Removed SIZE_T_FMT compatibility macros. fmt::sprintf is fully portable and supports %zu. * Adds FLOG functions to log with fmt's native formatting style.