diff --git a/indra/llrender/llimagegl.cpp b/indra/llrender/llimagegl.cpp index 51736087a0..826861d64c 100644 --- a/indra/llrender/llimagegl.cpp +++ b/indra/llrender/llimagegl.cpp @@ -1243,8 +1243,13 @@ void LLImageGL::setManualImage(U32 target, S32 miplevel, S32 intformat, S32 widt if (!scratch) { LLError::LLUserWarningMsg::showOutOfMemory(); - LL_ERRS() << "Failed to allocate " << (U32)(width * height * sizeof(U32)) + // FIRE-34374 - OOM Crash 80% of which are in render debug text + // LL_ERRS() << "Failed to allocate " << (U32)(width * height * sizeof(U32)) + // << " bytes for a manual image W" << width << " H" << height << LL_ENDL; + LL_WARNS() << "Failed to allocate " << (U32)(width * height * sizeof(U32)) << " bytes for a manual image W" << width << " H" << height << LL_ENDL; + return; + // } U32 pixel_count = (U32)(width * height);