summaryrefslogtreecommitdiff
path: root/src/server/apps/authserver/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/apps/authserver/Main.cpp')
-rw-r--r--src/server/apps/authserver/Main.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/server/apps/authserver/Main.cpp b/src/server/apps/authserver/Main.cpp
index bc40f2f10b..4c110db7aa 100644
--- a/src/server/apps/authserver/Main.cpp
+++ b/src/server/apps/authserver/Main.cpp
@@ -85,8 +85,6 @@ int main(int argc, char** argv)
if (!sConfigMgr->LoadAppConfigs())
return 1;
- std::vector<std::string> overriddenKeys = sConfigMgr->OverrideWithEnvVariablesIfAny();
-
// Init logging
sLog->RegisterAppender<AppenderDB>();
sLog->Initialize(nullptr);
@@ -103,9 +101,6 @@ int main(int argc, char** argv)
LOG_INFO("server.authserver", "> Using Boost version: {}.{}.{}", BOOST_VERSION / 100000, BOOST_VERSION / 100 % 1000, BOOST_VERSION % 100);
});
- for (std::string const& key : overriddenKeys)
- LOG_INFO("server.authserver", "Configuration field {} was overridden with environment variable.", key);
-
OpenSSLCrypto::threadsSetup();
std::shared_ptr<void> opensslHandle(nullptr, [](void*) { OpenSSLCrypto::threadsCleanup(); });