Fix server FPS logging

No need to have a config variable for this, admin can easily change it
in server pbo.
This commit is contained in:
ebaydayz
2016-04-17 17:11:49 -04:00
parent ee58868d6f
commit f38c6ff72e
7 changed files with 7 additions and 22 deletions

View File

@@ -1,8 +1,5 @@
// replaced with dze_diag_fps
/*
while {isServer} do {
diag_log ("DEBUG FPS : " + str(diag_fps) );
sleep 360;
while {true} do {
diag_log format["SERVER FPS: %1 PLAYERS: %2",diag_fps,playersNumber west];
//diag_log format["SERVER FPS: %1 PLAYERS: %2 OBJECTS: %3",diag_fps,playersNumber west,count (allMissionObjects "")]; // very intensive
uiSleep 360;
};
*/