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
Emitr catches errors thrown by listener code, so that an error in one listener doesn't prevent other listeners from receiving the same event. Unfortunately, this prevents developers from becoming aware of errors within their code. Instead, emitr should log any errors to the console with code like this:
if(window.console)console.error(e);
The text was updated successfully, but these errors were encountered:
Emitr catches errors thrown by listener code, so that an error in one listener doesn't prevent other listeners from receiving the same event. Unfortunately, this prevents developers from becoming aware of errors within their code. Instead, emitr should log any errors to the console with code like this:
The text was updated successfully, but these errors were encountered: