• Mike Lezhnin's avatar
    Fix a small problem in the basic example · 9858d4e9
    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.
    9858d4e9
Name
Last commit
Last update
bench Loading commit data...
cmake Loading commit data...
example Loading commit data...
include/spdlog Loading commit data...
scripts Loading commit data...
src Loading commit data...
tests Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.travis.yml Loading commit data...
CMakeLists.txt Loading commit data...
INSTALL Loading commit data...
LICENSE Loading commit data...
README.md Loading commit data...
appveyor.yml Loading commit data...
meson.build Loading commit data...
meson_options.txt Loading commit data...