log static method
log msg with level and tag to console
Implementation
static log(FijkLogLevel level, String msg, String tag) {
if (level.level >= _level.level) {
DateTime now = DateTime.now();
print("[${level.name}] ${now.toLocal()} [$tag] $msg");
}
}