Unverified Commit 6aaaabbc authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #1773 from Ryan-rsm-McKenzie/v1.x

ensure SPDLOG_FMT_EXTERNAL is honored throughout whole codebase
parents a5f41391 42c36f48
......@@ -9,7 +9,12 @@
#include "spdlog/spdlog.h"
#include "spdlog/async.h"
#include "spdlog/sinks/basic_file_sink.h"
#ifdef SPDLOG_FMT_EXTERNAL
#include <fmt/locale.h>
#else
#include "spdlog/fmt/bundled/locale.h"
#endif
#include "utils.h"
#include <atomic>
......
......@@ -11,7 +11,12 @@
#include "spdlog/sinks/daily_file_sink.h"
#include "spdlog/sinks/null_sink.h"
#include "spdlog/sinks/rotating_file_sink.h"
#ifdef SPDLOG_FMT_EXTERNAL
#include <fmt/locale.h>
#else
#include "spdlog/fmt/bundled/locale.h"
#endif
#include "utils.h"
#include <atomic>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment