21 lines
208 B
Ucode
Raw Normal View History

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