diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 10:15:24 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 10:15:24 +0200 |
| commit | 6a5d207920f030e54710af12463f4a701c09b118 (patch) | |
| tree | f4a652fbd8e5670044e75794e85bfb8c85b09aa0 /zenstore | |
| parent | Changed so more loggers go via the zen::loggers interface (diff) | |
| download | zen-6a5d207920f030e54710af12463f4a701c09b118.tar.xz zen-6a5d207920f030e54710af12463f4a701c09b118.zip | |
Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it easier to tweak implementation
Diffstat (limited to 'zenstore')
| -rw-r--r-- | zenstore/CAS.cpp | 3 | ||||
| -rw-r--r-- | zenstore/caslog.cpp | 2 | ||||
| -rw-r--r-- | zenstore/cidstore.cpp | 2 | ||||
| -rw-r--r-- | zenstore/filecas.cpp | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/zenstore/CAS.cpp b/zenstore/CAS.cpp index c05e3703d..10a17d89a 100644 --- a/zenstore/CAS.cpp +++ b/zenstore/CAS.cpp @@ -12,8 +12,7 @@ #include <zencore/string.h> #include <zencore/thread.h> #include <zencore/uid.h> - -#include <spdlog/spdlog.h> +#include <zencore/logging.h> #include <gsl/gsl-lite.hpp> diff --git a/zenstore/caslog.cpp b/zenstore/caslog.cpp index 169629053..39135f537 100644 --- a/zenstore/caslog.cpp +++ b/zenstore/caslog.cpp @@ -11,10 +11,10 @@ #include <zencore/string.h> #include <zencore/thread.h> #include <zencore/uid.h> +#include <zencore/logging.h> #include <xxhash.h> -#include <spdlog/spdlog.h> #include <gsl/gsl-lite.hpp> #include <functional> diff --git a/zenstore/cidstore.cpp b/zenstore/cidstore.cpp index 391520599..5a9ed9483 100644 --- a/zenstore/cidstore.cpp +++ b/zenstore/cidstore.cpp @@ -6,8 +6,8 @@ #include <zencore/filesystem.h> #include <zenstore/CAS.h> #include <zenstore/caslog.h> +#include <zencore/logging.h> -#include <spdlog/spdlog.h> #include <filesystem> namespace zen { diff --git a/zenstore/filecas.cpp b/zenstore/filecas.cpp index 56d25e729..df42de412 100644 --- a/zenstore/filecas.cpp +++ b/zenstore/filecas.cpp @@ -9,8 +9,8 @@ #include <zencore/string.h> #include <zencore/thread.h> #include <zencore/uid.h> +#include <zencore/logging.h> -#include <spdlog/spdlog.h> #include <gsl/gsl-lite.hpp> #include <filesystem> |