-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace console.error with friendly error system #6630
Comments
Welcome! 👋 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, please make sure to fill out the inputs in the issue forms. Thank you! |
@davepagurek if you can review this. I am willing to work on this issue. Please assign. |
can I get to work on this issue? this will be my first contribution in processing community |
where to find this issue I forked the code base in local system?? |
Do we also have to change the throw new error keywords or only the console.error |
@shashank-iitbhu please accept the pull request |
@davepagurek Hey I would like to work on this issue. Can you assign me? |
Thanks for opening this issue. However, that's not exactly how it works. For example, when I use And also, when we are using So, I need to close this issue. |
Increasing Access
Many functions inside
src/webgl
andlib/addons
currently usesconsole.error
to report errors. It would be more user-friendly and consistent with the p5.js environment to replace these calls with the friendly error system (FES).Most appropriate sub-area of p5.js?
Feature enhancement details
For example, take
parseASCIISTL
function inwebgl/loading.js
,I have triggered an error condition and the results,
with console.error:
with FES:
It would be more user-friendly and consistent with the p5.js environment to replace these calls with the friendly error system (FES).
The text was updated successfully, but these errors were encountered: