如何在异步中获得serperated函数的错误

时间:2016-03-29 11:18:28

标签: node.js asynchronous

代码段加载模块:

// Initialize Modules
async.series([
    function startServer(callback){
        server(callback);
    },function startScanningBLE(callback){
      noble.on('stateChange', function(state) {
        if (state === 'poweredOn') {
          noble.startScanning([], true);
          console.log("Started scanning");
        } else {
          noble.stopScanning();
        }
      });
    }],
    function(err) {
      if (err) {
        logger.error('[APP] initialization failed', err);
      } else {
        logger.info('[APP] Initialized SUCCESSFULLY');
      }
    }
);

我没有收到任何错误。但我想要的是获取startServer()和startScanningBLE()的错误。我尝试了不同的方法但由于某种原因它不想加入错误函数中的任何2个记录器。

0 个答案:

没有答案