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
const logger = new Logger();
const err = new Error('This is second argument');
logger.log('This is message.', err.message); // show `This is message.` only.
Expected behavior
Shows both, like
logger.log('This is message.', err.message); // show `This is message. This is second argument`.
The text was updated successfully, but these errors were encountered:
Bug Description
How to reproduce
Expected behavior
Shows both, like
The text was updated successfully, but these errors were encountered: