aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2014-06-28 17:55:40 +0200
committerjackpoz <giacomopoz@gmail.com>2014-06-28 17:55:40 +0200
commit82df3f090bb80ce045520786549b6370dcdc5874 (patch)
treeefef5389380aa6f3fe30cdec872f2920911b4622 /src
parentf3852d19e7cc08ce827692c0bf590fa32ed09e5b (diff)
Auth/Misc: Move OpenSSL version log from Warning to Information
Diffstat (limited to 'src')
-rw-r--r--src/server/authserver/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp
index be6623c7fa3..9f96d21e55e 100644
--- a/src/server/authserver/Main.cpp
+++ b/src/server/authserver/Main.cpp
@@ -115,7 +115,7 @@ extern int main(int argc, char** argv)
TC_LOG_INFO("server.authserver", "<Ctrl-C> to stop.\n");
TC_LOG_INFO("server.authserver", "Using configuration file %s.", configFile);
- TC_LOG_WARN("server.authserver", "%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION));
+ TC_LOG_INFO("server.authserver", "%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION));
#if defined (ACE_HAS_EVENT_POLL) || defined (ACE_HAS_DEV_POLL)
ACE_Reactor::instance(new ACE_Reactor(new ACE_Dev_Poll_Reactor(ACE::max_handles(), 1), 1), true);