Advanced Logger v1.0.1
Logger
|
A struct that defines settings for logger categories, including screen and console colors. More...
#include <LoggerSettings.h>
Public Member Functions | |
FLoggerCategorySettings () | |
Default constructor for FLoggerCategorySettings. | |
FLoggerCategorySettings (const FColor &InScreenColor, EConsoleColor InConsoleColor) | |
Constructor with parameters for screen and console colors. | |
Public Attributes | |
FLinearColor | ScreenColor |
The color used for displaying the log category on the screen. | |
EConsoleColor | ConsoleColor |
The color used for displaying the log category in the console. | |
A struct that defines settings for logger categories, including screen and console colors.
The FLoggerCategorySettings struct allows you to specify the colors that will be used for different logger categories when displayed on the screen and in the console.
FLoggerCategorySettings::FLoggerCategorySettings | ( | ) |
Default constructor for FLoggerCategorySettings.
Initializes the logger category settings with default values.
FLoggerCategorySettings::FLoggerCategorySettings | ( | const FColor & | InScreenColor, |
EConsoleColor | InConsoleColor ) |
Constructor with parameters for screen and console colors.
InScreenColor | The color to be used on the screen. |
InConsoleColor | The color to be used in the console. |