Change all console.error
s to console.warn
s
#3692
Labels
Up for grabs
Issues that are relatively small, self-contained, and ready for implementation
People commonly see "errors" like this:
... and they assume this is related to some other error. In fact, it's basically a warning, because we continue rendering regardless. But because it's red, it looks like an error.
We should replace all
logError
calls withlogWarn
. If we're going to log something and not throw an Error, then the text should be yellow rather than red.The text was updated successfully, but these errors were encountered: