1
0

Added abilty to set build info

build info is displayed at startup
Fixes #1410
This commit is contained in:
Tycho
2014-09-10 16:07:00 +01:00
parent 76d5aa1d51
commit 27be179939
5 changed files with 44 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
#include "DeadlockDetect.h"
#include "OSSupport/Timer.h"
#include "LoggerListeners.h"
#include "BuildInfo.h"
#include "inifile/iniFile.h"
@@ -111,6 +112,11 @@ void cRoot::Start(void)
LOG("--- Started Log ---\n");
#ifdef BUILD_ID
LOG("MCServer " BUILD_SERIES_NAME " build id: " BUILD_ID );
LOG("from commit id: " BUILD_COMMIT_ID " built at: " BUILD_DATETIME );
#endif
cDeadlockDetect dd;
m_bStop = false;