Enum type that is used in time formatting function in generateStyle.
Note: the type is exposed to allow user to implement its own time formatting functions.
string myTimeFormatting(DistType t, SysTime time) { final switch(t) { case(DistType.Console): return time.toSimpleString(); case(DistType.File): return time.toISOExtString(); } }
See Implementation
Enum type that is used in time formatting function in generateStyle.
Note: the type is exposed to allow user to implement its own time formatting functions.