Skip to content

Implement console.group() / console.groupEnd() / console.groupCollapsed() #9274

@paulrouget

Description

@paulrouget

Calling console.group() and an indentation level to further logs.

For example:

console.log(1);
console.group()
console.log(2);
console.log(3);
console.group();
console.log(4);
console.log(5);
console.groupEnd();
console.log(6);
console.groupEnd();
console.log(7);

will output:

1
..2
..3
....4
....5
..6
7

See:

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions