Merge pull request #1134 from lioncash/log

renderer_opengl: Use LOG_DEBUG for GL_DEBUG_SEVERITY_NOTIFICATION and GL_DEBUG_SEVERITY_LOW logs
This commit is contained in:
bunnei 2018-08-21 01:17:31 -04:00 committed by GitHub
commit 8c9abe1d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -432,7 +432,7 @@ static void APIENTRY DebugHandler(GLenum source, GLenum type, GLuint id, GLenum
break;
case GL_DEBUG_SEVERITY_NOTIFICATION:
case GL_DEBUG_SEVERITY_LOW:
LOG_TRACE(Render_OpenGL, format, str_source, str_type, id, message);
LOG_DEBUG(Render_OpenGL, format, str_source, str_type, id, message);
break;
}
}