log(日志)

在 Eagle 软件日志记录特定信息,以利开发中的调试、除错。

点击这里查看 Eagle 软件日志获取方式。

eagle.log.debug('debug message from plugin');
eagle.log.info('info message from plugin');
eagle.log.warn('warn message from plugin');
eagle.log.error('error message from plugin');

// [13:19:39.845] [debug] [plugin] "debug message from plugin"
// [13:19:39.845] [info] [plugin] "info message from plugin"
// [13:19:39.845] [warn] [plugin] "warn message from plugin"
// [13:19:39.845] [error] [plugin] "error message from plugin"

方法

debug(obj)

记录 debug 类型内容到软件日志

  • obj Object - 欲记录之内容,可以是 ObjectStringArray 等各种格式

eagle.log.debug(obj);
eagle.log.debug(array);
eagle.log.debug('error message from plugin');

info(obj)

记录 info 类型内容到软件日志

  • obj Object - 欲记录之内容,可以是 ObjectStringArray 等各种格式


warn(obj)

记录 warn 类型内容到软件日志

  • obj Object - 欲记录之内容,可以是 ObjectStringArray 等各种格式


error(obj)

记录 error 类型内容到软件日志

  • obj Object - 欲记录之内容,可以是 ObjectStringArray 等各种格式

try {
    let a = {};
    a.b.c = 'test';
}
catch (err) {
    eagle.log.error('error message from plugin');
    eagle.log.error(err.stack || err);
}

// [13:23:24.191] [error] [plugin] "error message from plugin"
// [13:23:24.191] [error] [plugin] "TypeError: Cannot set properties of undefined (setting 'c')\n    at <anonymous>:3:11"

最后更新于