More tweaks to Format Error Message

This commit is contained in:
2024-11-19 22:13:20 -05:00
parent c332fea06b
commit 622a912474
3 changed files with 45 additions and 42 deletions

View File

@@ -671,7 +671,10 @@ void UlxFormatErrorLibrary::FormatErrorInternal(UObject *Context, ElxLogVerbosit
// Output to Log
//
FMsg::Logf(BlueprintNameAnsi.Get(), 0, BlueprintNameLogCategory, VerbosityValue, TEXT("%s"), *MessageString);
if (VerbosityValue <= ELogVerbosity::COMPILED_IN_MINIMUM_VERBOSITY)
{
FMsg::Logf(BlueprintNameAnsi.Get(), 0, BlueprintNameLogCategory, VerbosityValue, TEXT("%s"), *MessageString);
}
}