Description
Steps to reproduce:
- Go to https://www.wikifunctions.org/wiki/Z10005?uselang=en&action=edit
- Add debug logs in the code.
function Z10000( Z10000K1, Z10000K2 ) {
Wikifunctions.Debug("one");
Wikifunctions.Debug("two");
return Z10000K1 + Z10000K2;
}- Execute this implementation
- Open the Details dialog
Observed behavior:
- ✅ The execution correctly returns a list of strings with all debug logs:
{
"Z1K1": {
"Z1K1": "Z7",
"Z7K1": "Z882",
"Z882K1": "Z6",
"Z882K2": "Z1"
},
"K1": "executorDebugLogs",
"K2": [
"Z6",
"one",
"two"
]
}- ❌ The execution logs key is shown, but no details are shown
Expected behavior (Acceptance criteria):
- The logs should be shown in the dialog
Completion checklist
- Before closing this task, review one by one the checklist available here: https://www.mediawiki.org/wiki/Abstract_Wikipedia_team/Definition_of_Done#Front-end_Task/Bug_Completion_Checklist

