KF2-CustomTraderInventory/CTI/Classes/_Logger.uc

20 lines
197 B
Ucode
Raw Normal View History

2022-07-05 13:09:48 +00:00
class _Logger extends Object
abstract;
enum E_LogLevel
{
LL_WrongLevel,
LL_Fatal,
LL_Error,
LL_Warning,
LL_Info,
LL_Debug,
LL_Trace,
LL_All
};
defaultproperties
{
}