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

Binary file not shown.

View File

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

View File

@@ -64,64 +64,64 @@ UENUM(BlueprintType)
enum class ElxDisplayDuration : uint8 { enum class ElxDisplayDuration : uint8 {
/* Do not display the message in the viewport */ /* Do not display the message in the viewport */
No_Display_in_Viewport = 0, No_Show = 0,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 1 seconds */
Display_1_Seconds = 1, Show_1_Seconds = 1,
/* Display the message in the viewport for 2 second */ /* Display the message in the viewport for 2 seconds */
Display_2_Seconds = 2, Show_2_Seconds = 2,
/* Display the message in the viewport for 3 second */ /* Display the message in the viewport for 3 seconds */
Display_3_Seconds = 3, Show_3_Seconds = 3,
/* Display the message in the viewport for 4 second */ /* Display the message in the viewport for 4 seconds */
Display_4_Seconds = 4, Show_4_Seconds = 4,
/* Display the message in the viewport for 5 second */ /* Display the message in the viewport for 5 seconds */
Display_5_Seconds = 5, Show_5_Seconds = 5,
/* Display the message in the viewport for 10 second */ /* Display the message in the viewport for 10 seconds */
Display_10_Seconds = 10, Show_10_Seconds = 10,
/* Display the message in the viewport for 20 second */ /* Display the message in the viewport for 20 seconds */
Display_20_Seconds = 20, Show_20_Seconds = 20,
/* Display the message in the viewport for 30 second */ /* Display the message in the viewport for 30 seconds */
Display_30_Seconds = 30, Show_30_Seconds = 30,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 40 seconds */
Display_40_Seconds = 40, Show_40_Seconds = 40,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 50 seconds */
Display_50_Seconds = 50, Show_50_Seconds = 50,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 60 seconds */
Display_60_Seconds = 60, Show_60_Seconds = 60,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 70 seconds */
Display_70_Seconds = 70, Show_70_Seconds = 70,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 80 seconds */
Display_80_Seconds = 80, Show_80_Seconds = 80,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 90 seconds */
Display_90_Seconds = 90, Show_90_Seconds = 90,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 1 minutes */
Display_1_Minute = 101, Show_1_Minutes = 101,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 2 minutes */
Display_2_Minutes = 102, Show_2_Minutes = 102,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 3 minutes */
Display_3_Minutes = 103, Show_3_Minutes = 103,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 4 minutes */
Display_4_Minutes = 104, Show_4_Minutes = 104,
/* Display the message in the viewport for 1 second */ /* Display the message in the viewport for 5 minutes */
Display_5_Minutes = 105, Show_5_Minutes = 105,
}; };
// //