Files
Arma3-AttendanceTracker/addons/main/functions/fn_log.sqf
2023-10-03 20:40:16 -07:00

17 lines
292 B
Plaintext

#include "..\script_mod.hpp"
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;