When does the timeout of the firebase functions log occur? - firebase

I’m using Firebase Functions + nestjs. I have observed the logs. When a request is made to firebase functions there is a log called “timeout” .How can I find out from where this error is generated? Please refer to the picture below for errors.
Thank you for your help. :)
firebase functions error log

Related

Can't create Firebase Cloud Messages From Console

For some reason, I don't see the ability for me to create FCMs from the Firebase console. It's not a browser issue as I tried on multiple browsers. It's not a permissions issue either since I am the owner of the project.
I tried implementing cloud functions to send FCMs and ever since when I go into the Cloud Messaging panel of the Firebase console I can no longer see the option to create messages.
Any insight would help!
Update--This is the error I'm getting from the JavaScript console:

Logging Firebase Flutter

Any idea how to get firebase logs (log on db connection and events etc) on an APK? I would like to send my app to a couple of friends in different countries to test out the app but I am not sure how I can log all the errors by their use more specific to firebase.
All help is highly appreciated! 😁

Google Auth giving "Request had insufficient authentication scopes" error while trying to run Google Script

I am trying to run my Google Script from within a cloud function from Firebase. When I run it, Google Auth is return an error saying Request had insufficient authentication scopes. I'm using the example from Google Quickstart found here: Google Apps Script Quickstart. My scope found in my token.json file is https://www.googleapis.com/auth/script.projects Is there something else I need to include just to run my simple script? Thanks in advance.

Firebase cloud function error, how to debug?

For some reason about a couple week ago, notifications in my app stopped working. I'm looking in the Firebase console through the logs of the function responsible for sending notifications and I see this:
However, I don't see where I can actually see the error that happened. Are the error logs located somewhere?

How can i see errors in firebase?

I have the following code in my client and I understand now that Date.now() works and new Date() does not, but for future errors is there any way for me to see these errors in some firebase log?
userList.push({'loggedIn': new Date()}).catch(function(error){
console.log('err')
console.log(error) //nothing showed here.
})
I ran firebase functions:log but got No log entries found.
https://firebase.google.com/docs/storage/web/handle-errors
If I understand correctly, you want to be informed that a value that you store in the realtime Database was null (or erroneous). The easiest way would be to look at the data through the Firebase console. Be aware that Firebase cannot, by default, detect that YOUR DATA is erroneous from a value perpective.
The command you ran (firebase functions:log) is about Cloud Functions and is not about logging for Realtime Database.
Similarly, the link you provided is about Storage and not about logging for Realtime Database.

Resources