KF2-MSK-GS/MSKGS/Classes/_Logger.uc

21 lines
208 B
Ucode
Raw Permalink Normal View History

2022-08-01 11:09:38 +00:00
class _Logger extends Object
abstract;
enum E_LogLevel
{
LL_WrongLevel,
LL_None,
LL_Fatal,
LL_Error,
LL_Warning,
LL_Info,
LL_Debug,
LL_Trace,
LL_All
};
defaultproperties
{
}