Blender_bevy_components_workflow
Blender_bevy_components_workflow copied to clipboard
Replace println! with debug!
There are many places in the code where println! is used for debugging which makes for a lot of noise on the console in some cases. This PR simply bulk replaces println! with debug! so that the messages respect log level. I haven't tried to remove any commented out messages but I changed the macro in those as well.
fixes #245