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