Added console.warn and console.group (#24325)
I have added console.warn and console.group functions
This commit is contained in:
@ -14,3 +14,18 @@ This is how you print to the console:
|
||||
Also You can print an error log in the console with this code:
|
||||
|
||||
console.error('I am an error!')
|
||||
|
||||
Or you can print warning logs with the following code:
|
||||
|
||||
console.warn('I am a warning!')
|
||||
|
||||
If you want to group multiple console messages, you can use the `console.group`:
|
||||
|
||||
console.group();
|
||||
console.log('Nothing happend yet...');
|
||||
console.log('Yet nothing to report');
|
||||
console.warn('Warning! Something went wrong');
|
||||
console.groupEnd();
|
||||
console.error('I am not part of the group');
|
||||
|
||||
Above example of the group is not collapsed by default, if you want to, use `console.groupCollapsed` instead.
|
||||
|
Reference in New Issue
Block a user