mirror of
https://github.com/indig0fox/Arma3-AttendanceTracker.git/
synced 2025-12-08 01:41:49 -06:00
- no longer supports server events - can now more easily build using hemtt - extension vastly improved in both structure and functionality - tested on listen server - includes schema change
15 lines
262 B
Plaintext
15 lines
262 B
Plaintext
params [
|
|
["_message", "", [""]],
|
|
["_level", "INFO", [""]],
|
|
"_function"
|
|
];
|
|
|
|
if (isNil "_message") exitWith {false};
|
|
if (
|
|
missionNamespace getVariable ["ATDebug", true] &&
|
|
_level != "WARN" && _level != "ERROR"
|
|
) exitWith {};
|
|
|
|
LOG_SYS(_level, _message);
|
|
|
|
true; |