From d23b4cde8c264686b625cfe2317335c874042896 Mon Sep 17 00:00:00 2001 From: Etaash Mathamsetty Date: Sat, 13 Apr 2024 13:23:42 -0400 Subject: [PATCH] promote debug statement to error --- src/gl/inject_egl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gl/inject_egl.cpp b/src/gl/inject_egl.cpp index 416955ad..ea87add2 100644 --- a/src/gl/inject_egl.cpp +++ b/src/gl/inject_egl.cpp @@ -35,7 +35,7 @@ static void* get_egl_proc_address(const char* name) { func = get_proc_address( name ); if (!func) { - SPDLOG_DEBUG("Failed to get function '{}'", name); + SPDLOG_ERROR("Failed to get function '{}'", name); } return func;