Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@mgail.com>2020-09-26 14:41:33 +0300
committergabime <gmelman1@mgail.com>2020-09-26 14:41:33 +0300
commit1ac2dcc53749031749618e19e7de0a418aa9e93d (patch)
tree9a8508c5150552117bc8de87ed28562df594b0dd /include/spdlog/cfg/env.h
parent3a68eecb282c0c19527b9b52d951fbfbdb0881e6 (diff)
wip fix #1680 again
Diffstat (limited to 'include/spdlog/cfg/env.h')
-rw-r--r--include/spdlog/cfg/env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spdlog/cfg/env.h b/include/spdlog/cfg/env.h
index e2dc5717..8105af19 100644
--- a/include/spdlog/cfg/env.h
+++ b/include/spdlog/cfg/env.h
@@ -31,7 +31,7 @@ inline void load_env_levels()
if (!env_val.empty())
{
auto levels = helpers::extract_levels(env_val);
- details::registry::instance().update_levels(std::move(levels));
+ details::registry::instance().set_levels(std::move(levels));
}
}