a3_exile_occupation/scripts/occupationLog.sqf
second_coming 1c48de5f5e V31 Roll Back
Problems with versions after this which caused out of memory errors
2016-05-04 09:57:54 +01:00

12 lines
262 B
Plaintext

// Logging function to use either infiSTAR logging function or server RPT
_logDetail = _this select 0;
if(SC_infiSTAR_log && !isNil "INFISTARVERSION") then
{
['A3_EXILE_OCCUPATION',_logDetail] call FNC_A3_CUSTOMLOG;
}
else
{
diag_log _logDetail;
};