diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c index c77dabfb539..f62f427542d 100644 --- a/source/blender/python/generic/bgl.c +++ b/source/blender/python/generic/bgl.c @@ -2644,9 +2644,9 @@ PyObject *BPyInit_bgl(void) } if (GPU_backend_get_type() != GPU_BACKEND_OPENGL) { - CLOG_ERROR(&LOG, - "'bgl' imported without an OpenGL backend. Please update your add-ons to use the " - "'gpu' module. In Blender 3.7 'bgl' will be removed."); + CLOG_WARN(&LOG, + "'bgl' imported without an OpenGL backend. Please update your add-ons to use the " + "'gpu' module. In Blender 3.7 'bgl' will be removed."); } PyModule_AddObject(submodule, "Buffer", (PyObject *)&BGL_bufferType);