toolkit
toolkit copied to clipboard
Nested logging groups tree-view
Describe the enhancement
Currently, if nested groups are created using startGroup and endGroup in the UI they are shown next to each other. The expectation is that the internal groups are hidden in the parent group.
For example, here the more detailed group show be hidden unless the parent group is expanded:

Code Snippet
startGroup("parent")
startGroup("child")
endGroup()
endGroup()
Additional information
Since this issue is already 2 years old, is there any chance to get this fixed soon?
Nested group also breaks folding for parent group
echo "1"
echo "::group::parent"
echo "2:parent"
echo "::group::child"
echo "3:parent:child"
echo "::endgroup::"
echo "4:parent"
echo "::endgroup::"
echo "5"
shows as
1
> parent
2:parent
> child
3:parent:child
4:parent
5