Log constructor
Creates a new logger
Implementation
Log(
String name, {
Level level = Level.info,
bool colors = true,
}) : _name = name,
_col = RandomUtils.intInRange(0, _classColors.length - 1),
_colors = colors,
_level = level;