-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
fix(icon): Use the ErrorLogger to log MatIcon SVG errors #16967
Conversation
Currently a console.log is used. This change switches to using ErrorHandler. ErrorHandler is better because it allows the user of MatIcon to define how Errors should be handled instead of relying on the console. Update API goldens
Errors in CI are not related to this change |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
)" This reverts commit dccddd9. Temporarily reverting because this causes a failure in a Google Cloud test that didn't show up on the presubmit. Will undo this revert once we can resolve that failure.
This reverts commit 680ed00, which reverted angular#16967 (roll forward)
This reverts commit 680ed00, which reverted angular#16967 (roll forward) (cherry picked from commit 4778f49)
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Currently a console.log is used. This change switches to using
ErrorHandler.
ErrorHandler is better because it allows the user of MatIcon to define
how Errors should be handled instead of relying on the console.