Hi,
I want to know if it is possible to display the output of any Debug.Log() statements in a (development) build in the same way as you would see them in the editor console.
I know that the outputs are sent to a text file, and that anything using Debug.LogError() will actually display in the dev console for dev builds, but I am wondering if there is some in-built support for having the dev console in builds also display the output from regular Debug.Log() statements, or if the simplest solution for me is to just change every Debug.Log I need to see the output of into a Debug.LogError.
Thanks
