toolkit icon indicating copy to clipboard operation
toolkit copied to clipboard

Nested logging groups tree-view

Open aminya opened this issue 3 years ago • 2 comments

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: image

Code Snippet

startGroup("parent")

startGroup("child")
endGroup()

endGroup()

Additional information

aminya avatar Feb 14 '22 00:02 aminya

Since this issue is already 2 years old, is there any chance to get this fixed soon?

PatrickSchiefer avatar Oct 29 '24 14:10 PatrickSchiefer

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

koct9i avatar Sep 04 '25 14:09 koct9i