When an Mendix error shows a stack trace, this is not 'LOW CODE'. Its a high code stack trace from the runtime, which is hard to read.
Useful in many cases, but not perfect. Please add a (clickable trace) of all microflows / nanoflows preceding the stack trace.
ACT_User_Save > OCH_User_name > SUB_User_Validate
Or at least.... in the current stack trace, make each microflow / nanoflow name clickable, to open directly.
(This will already be a huge time saver: selecting, copy name, searching and open document)
This info is available at runtime, we use it the writing custom log messages... we would like to see it everywhere.
Stack<ICoreAction<?>> actionStack=this.getContext().getActionStack();
String actionStackString = "";
for(ICoreAction<?> action : actionStack) {
if(!action.getActionName().startsWith("Unnamed-Action-")) {
actionStackString = actionStackString + action.getActionName() + ">";
}
}
return actionStackString.substring(0, actionStackString.length() -1);
Indeed it would help a lot to get better insights for tracing issues.
Similar to this idea here: https://community.mendix.com/link/space/microflows/ideas/1950