From cb0c8922e0488185befcdabe1bec8a3c4833b4ff Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Mon, 20 Sep 2021 08:46:34 -0400 Subject: [PATCH] - downgrade GL_EXTENSIONS message in OpenGL ES to logging level --- src/common/rendering/gles/gles_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/rendering/gles/gles_system.cpp b/src/common/rendering/gles/gles_system.cpp index f58051e64..a72e3f933 100644 --- a/src/common/rendering/gles/gles_system.cpp +++ b/src/common/rendering/gles/gles_system.cpp @@ -149,7 +149,7 @@ namespace OpenGLESRenderer Printf("GL_RENDERER: %s\n", glGetString(GL_RENDERER)); Printf("GL_VERSION: %s\n", glGetString(GL_VERSION)); Printf("GL_SHADING_LANGUAGE_VERSION: %s\n", glGetString(GL_SHADING_LANGUAGE_VERSION)); - Printf("GL_EXTENSIONS:\n"); + Printf(PRINT_LOG, "GL_EXTENSIONS:\n"); for (unsigned i = 0; i < m_Extensions.Size(); i++) { Printf(" %s\n", m_Extensions[i].GetChars());