Removed unneeded statement

Also LOGINFO'd "Starting WebAdmin"
This commit is contained in:
Tiger Wang
2013-09-30 21:17:52 +01:00
parent 9c7cfd29ad
commit 20902e125c
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -184,8 +184,7 @@ void cRoot::Start(void)
long long finishmseconds = Time.GetNowTime();
finishmseconds -= mseconds;
if ((finishmseconds > 1) || (finishmseconds == 0)) { LOG("Startup complete, took %i miliseconds!", finishmseconds); } // Milisecs, why not :P
else { LOG("Startup complete, took 1 milisecond!"); }
LOG("Startup complete, took %i ms!", finishmseconds);
while (!m_bStop && !m_bRestart) // These are modified by external threads
{