记录 firebase 警告
Logging firebase warnings
我在我的 nodejs 应用程序的控制台上收到以下警告:
FIREBASE WARNING: Provided authentication credentials for the app
named "[DEFAULT]" are invalid. This usually indicates your app was not
initialized correctly. Make sure the "credential" property provided to
initializeApp() is authorized to access the specified "databaseURL"
and is from the correct project.
有没有办法将这种警告发送给记录器?
我没有找到任何适用于 nodeJs Admin SDK
的东西
明确地说,我不同意错误本身,只同意如何将我的代码或库代码上发生的所有相关问题记录到一个我可以查看的文件中。
此外,api 调用者无法记录警告,因为它不会将其发送回调用者。
通过admin.database().enableLogging()
指定自定义日志函数。请参阅参考文档中的示例。
我在我的 nodejs 应用程序的控制台上收到以下警告:
FIREBASE WARNING: Provided authentication credentials for the app named "[DEFAULT]" are invalid. This usually indicates your app was not initialized correctly. Make sure the "credential" property provided to initializeApp() is authorized to access the specified "databaseURL" and is from the correct project.
有没有办法将这种警告发送给记录器? 我没有找到任何适用于 nodeJs Admin SDK
的东西明确地说,我不同意错误本身,只同意如何将我的代码或库代码上发生的所有相关问题记录到一个我可以查看的文件中。
此外,api 调用者无法记录警告,因为它不会将其发送回调用者。
通过admin.database().enableLogging()
指定自定义日志函数。请参阅参考文档中的示例。