本文介绍如何在Node.js运行环境下打印和查看函数日志。
打印日志
函数计算会收集标准输出stdout打印的日志,您可以通过以下几种方式打印日志:
'use strict';
exports.handler = (event, context, callback) => {
process.stdout.write('hi,fc\n');
console.log('hello,world');
context.logger.info('hello,fc');
callback(null, 'hello,world');
}
查看日志
函数执行完成后,您可以在函数详情页的日志页签查看日志信息。