init static method

bool init(
  1. ALogLevel level,
  2. String path,
  3. String namePrefix
)

level 最低输出 log 等级 path 日志文件路径 name 日志文件名称

Implementation

static bool init(ALogLevel level, String path, String namePrefix) {
  js.context['console'].callMethod('log', [level, path, namePrefix]);
  return true;
}