- 08 Feb, 2020 1 commit
-
-
dominicpoeschko authored
calling log with a string_view as msg called ``` template<typename... Args> void log(source_loc loc, level::level_enum lvl, string_view_t fmt, const Args &... args) ``` instead of ``` template<class T, typename std::enable_if<std::is_convertible<const T &, spdlog::string_view_t>::value, T>::type * = nullptr> void log(source_loc loc, level::level_enum lvl, const T &msg) ``` which lead to an unnecessary call to fmt::format
-
- 07 Feb, 2020 8 commits
-
-
Gabi Melman authored
Enable running the tests against an installed copy of spdlog
-
Gabi Melman authored
CMakeLists.txt: put GNUInstallDirs after set project language
-
Michael R. Crusoe authored
-
Michael R. Crusoe authored
-
Gabi Melman authored
Don't run spdlog-utests and spdlog-utests-ho in parallel
-
tt4g authored
spdlog-utests and spdlog-utests-ho use the same log output directory, so some tests will randomly fail when run in parallel.
-
Gabi Melman authored
tests/utils.h: removed duplicate entry for count_lines()
-
Mario Emmenlauer authored
-
- 03 Feb, 2020 3 commits
-
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
-
- 02 Feb, 2020 3 commits
-
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
-
- 30 Jan, 2020 1 commit
-
-
Vitaly Lipatov authored
-
- 19 Jan, 2020 4 commits
-
-
Gabi Melman authored
add max files for rotating days
-
weiy authored
-
weiy authored
-
weiy authored
-
- 13 Jan, 2020 4 commits
-
-
Gabi Melman authored
latest spdlog now available on MacPorts
-
X Nephila authored
I am the maintainer of spdlog on MacPorts, now the latest version(1.4.2) of spdlog is available on MacPorts.
-
Gabi Melman authored
docs: spdlog now available in conan center, bincrafters repo is deprecated
-
Carlos Gomes Martinho authored
-
- 02 Jan, 2020 1 commit
-
-
Gabi Melman authored
meson: add fallback to fmt dependency
-
- 01 Jan, 2020 1 commit
-
-
Łukasz Dańko authored
Now `fmt` library can be used as subproject which helps with cross compilation.
-
- 23 Dec, 2019 2 commits
-
-
Gabi Melman authored
Fix invalid meson option
-
Ahmed Sagdati authored
-
- 22 Dec, 2019 7 commits
-
-
gabime authored
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
-
Gabi Melman authored
-
- 20 Dec, 2019 2 commits
-
-
Gabi Melman authored
Fix a small problem in the basic example
-
Mike Lezhnin authored
The line ``` SPDLOG_TRACE("Some trace message with param {}", {}); ``` which normally is discarded at the compile time since by deafult `SPDLOG_ACTIVE_LEVEL` is at `SPDLOG_LEVEL_INFO`. If however, one goes to `tweak.me` and sets ``` #define SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_TRACE ``` suddenly the basic example does not compile any more. This commit fixes the potential problem.
-
- 12 Dec, 2019 3 commits