如何将错误记录到 Firebase Cloud Functions Log?

How to log errors to Firebase Cloud Functions Log?

我无法将有意义的错误消息记录到我的函数日志中,我想要实现的是 'error' 日志级别出现错误,如下所示:

Image of actual error log

相反,我得到的是:

Image of test result

我正在使用以下函数对此进行测试:

exports.testError = functions.https.onRequest(async (request, response) =>
{
    console.log('Hi');

    //According to google this won't be logged as error
    console.error('Error');

    //But these will
    console.error(new Error('error'));
    console.error('Error', new Error('error'));

    return response.status(500).send('Test is finished.');
})

第一张图片是一个随机错误,其目的是展示我想要实现的目标,即:将错误记录为错误。

第二张图片是我的测试结果,它表明即使我按照 google(Reporting Errors) 的说明进行操作,它也没有按预期工作。

好吧,我想通了:我使用的是节点 12,我将其更改为节点 10,它现在按预期记录错误。

按照

中所述使用 Cloud Functions 记录器 SDK

https://firebase.google.com/docs/functions/writing-and-viewing-logs

const functions = require("firebase-functions")
functions.logger.debug("debug level in web console and gcp")
functions.logger.log("info level in web console and gcp")
functions.logger.info("info level in web console and gcp")
functions.logger.warn("info level but no icon in web console; warn icon in gcp")
functions.logger.error("error level in web console and gcp")

我无法让 console.error()console.info() 正常工作(节点 10、12 或 14),如 https://firebase.google.com/docs/functions/reporting-errors

中所宣传的那样