freedreno: Move FD_MESA_DEBUG=msgs output to mesa_logi.

It didn't work unless you had a debug build, and I regularly want to use
it on non-debug builds.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11452>
This commit is contained in:
Emma Anholt
2021-06-17 10:54:46 -07:00
committed by Marge Bot
parent d4203bf7ab
commit 57da290b52
@@ -110,7 +110,7 @@ extern bool fd_binning_enabled;
#define DBG(fmt, ...) \
do { \
if (FD_DBG(MSGS)) \
mesa_logd("%5d: %s:%d: " fmt, gettid(), __FUNCTION__, __LINE__, \
mesa_logi("%5d: %s:%d: " fmt, gettid(), __FUNCTION__, __LINE__, \
##__VA_ARGS__); \
} while (0)