summaryrefslogtreecommitdiffstats
path: root/source/Server.cpp
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-28 21:36:01 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-09-28 21:36:01 +0200
commitcc5c56d545c0735d28a99b89d4970bd507608f7f (patch)
treed7d803c788aff3d53935d8ef9ac01b70a3dbe922 /source/Server.cpp
parentMerge pull request #2 from tigerw/bugfixes (diff)
downloadcuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.tar
cuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.tar.gz
cuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.tar.bz2
cuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.tar.lz
cuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.tar.xz
cuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.tar.zst
cuberite-cc5c56d545c0735d28a99b89d4970bd507608f7f.zip
Diffstat (limited to 'source/Server.cpp')
-rw-r--r--source/Server.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/source/Server.cpp b/source/Server.cpp
index dd18f8d3d..4283dbfae 100644
--- a/source/Server.cpp
+++ b/source/Server.cpp
@@ -206,9 +206,8 @@ bool cServer::InitServer(cIniFile & a_SettingsIni)
return false;
}
- LOG("Starting up server.");
- LOGINFO("Compatible clients: %s", MCS_CLIENT_VERSIONS);
- LOGINFO("Compatible protocol versions %s", MCS_PROTOCOL_VERSIONS);
+ LOGD("Compatible clients: %s", MCS_CLIENT_VERSIONS);
+ LOGD("Compatible protocol versions %s", MCS_PROTOCOL_VERSIONS);
if (cSocket::WSAStartup() != 0) // Only does anything on Windows, but whatever
{
@@ -292,7 +291,7 @@ void cServer::PrepareKeys(void)
// TODO: Save and load key for persistence across sessions
// But generating the key takes only a moment, do we even need that?
- LOG("Generating protocol encryption keypair...");
+ LOGD("Generating protocol encryption keypair...");
time_t CurTime = time(NULL);
CryptoPP::RandomPool rng;