React already logs the errors (in some cases?), so Reagent is just adding duplicate information to console currently.
In one current project I'm seeing two "Error rendering component" log messages from Reagent, original Error, and a log message from React. If this works similarly in other cases, this error logging could be removed from Reagent.
Previously I think Reagent added component stack information, but it is now included in all errors / added by React.
https://github.com/reagent-project/reagent/blob/4f40516b0b1e90aac7b35800b34c769f48986ac6/src/reagent/impl/component.cljs#L115-L128
React already logs the errors (in some cases?), so Reagent is just adding duplicate information to console currently.
In one current project I'm seeing two "Error rendering component" log messages from Reagent, original Error, and a log message from React. If this works similarly in other cases, this error logging could be removed from Reagent.
Previously I think Reagent added component stack information, but it is now included in all errors / added by React.