From dae39cd2783efaac96d099894ad880c257c0ec33 Mon Sep 17 00:00:00 2001 From: Serdar Kocdemir Date: Tue, 13 May 2025 11:42:30 +0000 Subject: [PATCH] gfxstream: Reduce log level on AHB allocation Reviewed-by: Marcin Radomski Part-of: --- src/gfxstream/guest/android/GrallocEmulated.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gfxstream/guest/android/GrallocEmulated.cpp b/src/gfxstream/guest/android/GrallocEmulated.cpp index 66dadbdfbeb..590dd0ab940 100644 --- a/src/gfxstream/guest/android/GrallocEmulated.cpp +++ b/src/gfxstream/guest/android/GrallocEmulated.cpp @@ -443,7 +443,7 @@ int EmulatedGralloc::allocate(uint32_t width, uint32_t height, uint32_t ahbForma } AHardwareBuffer* EmulatedGralloc::allocate(uint32_t width, uint32_t height, uint32_t drmFormat) { - mesa_loge("Allocating AHB w:%u, h:%u, format %u", width, height, drmFormat); + mesa_logd("Allocating AHB w:%u, h:%u, format %u", width, height, drmFormat); const auto& formatInfosMap = GetDrmFormatInfoMap(); auto formatInfoIt = formatInfosMap.find(drmFormat);