diff --git a/src/Magnum/GL/Context.cpp b/src/Magnum/GL/Context.cpp index 58432c1f5..7873654a3 100644 --- a/src/Magnum/GL/Context.cpp +++ b/src/Magnum/GL/Context.cpp @@ -707,8 +707,8 @@ bool Context::tryCreate() { std::ostream* output = _internalFlags & InternalFlag::DisplayInitializationLog ? Debug::output() : nullptr; /* Print some info and initialize state tracker (which also prints some - more info) */ - Debug{output} << "Renderer:" << rendererString() << "by" << vendorString(); + more info). Mesa's renderer string has a space at the end, trim that. */ + Debug{output} << "Renderer:" << Utility::String::trim(rendererString()) << "by" << vendorString(); Debug{output} << "OpenGL version:" << versionString(); /* Disable extensions as requested by the user */