diff --git a/MobileGL/MG_Backend/BackendObject.cpp b/MobileGL/MG_Backend/BackendObject.cpp index 94da30bb..e5374140 100644 --- a/MobileGL/MG_Backend/BackendObject.cpp +++ b/MobileGL/MG_Backend/BackendObject.cpp @@ -163,16 +163,16 @@ namespace MobileGL::MG_Backend { void PrintFormatCapabilities(const FormatCapabilityCache& cache) { const SizeT formatNameWidth = GetPrintedFormatNameWidth(); - MGLOG_I("Backend format capabilities:"); + MGLOG_D("Backend format capabilities:"); for (SizeT targetIndex = 0; targetIndex < kFormatCapabilityTargetCount; ++targetIndex) { - MGLOG_I(""); + MGLOG_D(""); const String targetName = GetFormatCapabilityTargetName(targetIndex); - MGLOG_I("- %s", targetName.c_str()); + MGLOG_D("- %s", targetName.c_str()); const String header = BuildFormatCapabilityHeader(formatNameWidth); - MGLOG_I("%s", header.c_str()); + MGLOG_D("%s", header.c_str()); for (SizeT formatIndex = 0; formatIndex < kFormatCapabilityFormatCount; ++formatIndex) { const String row = BuildFormatCapabilityRow(cache, targetIndex, formatIndex, formatNameWidth); - MGLOG_I("%s", row.c_str()); + MGLOG_D("%s", row.c_str()); } } } diff --git a/MobileGL/MG_Backend/DirectGLES/BackendObject_DirectGLES.cpp b/MobileGL/MG_Backend/DirectGLES/BackendObject_DirectGLES.cpp index a94ddcf8..22ae0114 100644 --- a/MobileGL/MG_Backend/DirectGLES/BackendObject_DirectGLES.cpp +++ b/MobileGL/MG_Backend/DirectGLES/BackendObject_DirectGLES.cpp @@ -251,7 +251,7 @@ namespace MobileGL::MG_Backend::DirectGLES { void LogGLESFormatCaveat(TextureInternalFormat logicalFormat, SizeT targetIndex, const GLESProbeFormatInfo& fallbackInfo) { - MGLOG_I("Caveat: %s %s not fully supported. Reason: %s. Fallback: %s", + MGLOG_D("Caveat: %s %s not fully supported. Reason: %s. Fallback: %s", GetFormatCapabilityTargetNameForLog(targetIndex).c_str(), MG_Util::ConvertTextureInternalFormatToString(logicalFormat).c_str(), fallbackInfo.Reason.c_str(), diff --git a/MobileGL/MG_Backend/DirectVulkan/BackendObject_DirectVulkan.cpp b/MobileGL/MG_Backend/DirectVulkan/BackendObject_DirectVulkan.cpp index b46b3dc5..cbf5ca59 100644 --- a/MobileGL/MG_Backend/DirectVulkan/BackendObject_DirectVulkan.cpp +++ b/MobileGL/MG_Backend/DirectVulkan/BackendObject_DirectVulkan.cpp @@ -225,7 +225,7 @@ namespace MobileGL::MG_Backend::DirectVulkan { void LogVulkanFormatCaveat(TextureInternalFormat logicalFormat, SizeT targetIndex, TextureInternalFormat fallbackFormat) { - MGLOG_I("Caveat: %s %s not fully supported. Reason: native Vulkan format is not fully supported. Fallback: %s", + MGLOG_D("Caveat: %s %s not fully supported. Reason: native Vulkan format is not fully supported. Fallback: %s", GetFormatCapabilityTargetNameForLog(targetIndex).c_str(), MG_Util::ConvertTextureInternalFormatToString(logicalFormat).c_str(), MG_Util::ConvertTextureInternalFormatToString(fallbackFormat).c_str());