I wonder if it is possible to disable or at least not show so much data (I don't think they are very useful for the end user.)
Captura desde 2022-11-18 13-35-17.png
You can implement your own get_debug_text() method to show some custom data. It is currently not possible to disable the tab.
with r10812 you can disable the tab by returning null in get_debug_text:
function get_debug_text(pl)
{
return null
}
great thank you very much. 8)