Added console.warn and console.group (#24325)

I have added console.warn and console.group functions
This commit is contained in:
githrdw
2018-12-07 10:53:06 +01:00
committed by Manish Giri
parent 092a5a4ca8
commit 6977db2170

View File

@ -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.