remove dupe log

use info
This commit is contained in:
Glenn Maynard
2003-01-24 01:35:53 +00:00
parent 1b2de71927
commit 3a78d48b84
+1 -2
View File
@@ -154,7 +154,6 @@ void RageDisplay::SetupExtensions()
{ {
double fGLVersion = atof( (const char *) glGetString(GL_VERSION) ); double fGLVersion = atof( (const char *) glGetString(GL_VERSION) );
m_oglspecs->glVersion = int(roundf(fGLVersion * 10)); m_oglspecs->glVersion = int(roundf(fGLVersion * 10));
LOG->Trace( "OpenGL version %.1f", m_oglspecs->glVersion / 10.);
GetGLExtensions(m_oglspecs->glExts); GetGLExtensions(m_oglspecs->glExts);
/* Check for extensions: */ /* Check for extensions: */
@@ -347,7 +346,7 @@ void RageDisplay::DumpOpenGLDebugInfo()
/* We chose a bogus format. */ /* We chose a bogus format. */
LOG->Warn("%s", str.GetString()); LOG->Warn("%s", str.GetString());
} else } else
LOG->Trace("%s", str.GetString()); LOG->Info("%s", str.GetString());
} }
#endif #endif
} }