You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the console object has been "enhanced", a warning message should be written to stderr every time that any of the logging methods (see below) are called without a first "log level" string argument.
// badconsole.log('a single string');console.log('two','strings');console.log('several stings also','warn','unless the first arg is a log level');// goodconsole.log('info','some message');console.warn('some message');console.error('another','message');
The text was updated successfully, but these errors were encountered:
After the
console
object has been "enhanced", a warning message should be written tostderr
every time that any of the logging methods (see below) are called without a first "log level" string argument.The text was updated successfully, but these errors were encountered: