GroupAction

DebugActions. GroupAction

An action 'group' that can start/stop console groups. Only supports one group at a time, if another group is open, this will be closed first.

Constructor

new GroupAction()

Source:
Examples
// Starts a new console group "myGroupName" non collapsed
{
    "group": {
        "name": "myGroupName",
        "collapse": false
    }
}
// Starts a new console group "myGroupName" non collapsed, shorthand
{
    "group": "myGroupName"
}
// Closes the current group
{
    "group": null
}