Skip to content

Commit

Permalink
log ext return
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Feb 27, 2025
1 parent b817ea8 commit 98f47f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/extension/XEH_serverPostInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ addMissionEventHandler ["ExtensionCallback", {
params ["_name", "_component", "_data"];
if ((toLower _name) != "potato_extension_log") exitWith {};
(parseSimpleArray _data) params ["_level", "_message"];
TRACE_3("ExtensionCallback",_component,_level,_message);
INFO_3("ExtensionCallback %1-%2-%3",_component,_level,_message);
}];

// Init connection to bot by calling init on expection
Expand Down
2 changes: 1 addition & 1 deletion addons/extension/functions/fnc_botMessage.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ if (_type == "embed" && isNil "_title") then {

private _return = "potato_extension" callExtension ["message:bot_message", [_type, _channel, _message, _title]];

TRACE_1("Return",_return);
INFO_1("sent: %1",_return);

0 comments on commit 98f47f6

Please sign in to comment.