Change logging of active scripts so it is done only if blck_debugON == true

This commit is contained in:
Chris Cardozo 2020-11-25 09:15:20 -05:00
parent 63154379c8
commit 3ac264fa75

View File

@ -71,8 +71,6 @@ while {true} do
}; };
if (diag_tickTime > _timer5min) then if (diag_tickTime > _timer5min) then
{ {
_activeScripts = diag_activeScripts;
[ [
format["Timstamp %8 |Dynamic Missions Running %1 | Vehicles %2 | Groups %3 | Missions Run %4 | Server FPS %5 | Server Uptime %6 Min", format["Timstamp %8 |Dynamic Missions Running %1 | Vehicles %2 | Groups %3 | Missions Run %4 | Server FPS %5 | Server Uptime %6 Min",
blck_missionsRunning, blck_missionsRunning,
@ -83,17 +81,21 @@ while {true} do
diag_tickTime diag_tickTime
] ]
] call blck_fnc_log; ] call blck_fnc_log;
[ if (blck_debugON) then
format["count diag_activeSQFScripts %1 | Threads [spawned %2, execVM %3] | monitorThreads %4",
count diag_activeSQFScripts,
_activeScripts select 0,
_activeScripts select 1,
blck_activeMonitorThreads
]
] call blck_fnc_log;
{ {
[format["file %1 | running %2",(_x select 1),(_x select 2)]] call blck_fnc_log; private _activeScripts = diag_activeScripts;
} forEach diag_activeSQFScripts; [
format["count diag_activeSQFScripts %1 | Threads [spawned %2, execVM %3] | monitorThreads %4",
count diag_activeSQFScripts,
_activeScripts select 0,
_activeScripts select 1,
blck_activeMonitorThreads
]
] call blck_fnc_log;
{
[format["file %1 | running %2",(_x select 1),(_x select 2)]] call blck_fnc_log;
} forEach diag_activeSQFScripts;
};
[] call blck_fnc_cleanEmptyGroups; [] call blck_fnc_cleanEmptyGroups;
_timer5min = diag_tickTime + 300; _timer5min = diag_tickTime + 300;
}; };