Open jobweegink opened 6 months ago
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.
Hey @jobweegink. Could you give a code sample which I can use to investigate and debug?
Sure, see below, the console logs 'hi' and 'there' wont be grouped when clicking "Show entries from this trace"
import {
onDocumentWritten,
Change,
FirestoreEvent
} from "firebase-functions/v2/firestore";
exports.myfunction = onDocumentWritten("someCollection/{recordId}", (event) => {
console.log('hi')
console.log('there')
});
This may be fixed by https://github.com/firebase/firebase-functions/pull/1533
Related issues
1331
[REQUIRED] Version info
node:20.11.1
firebase-functions:5.0.1
firebase-tools:13.5.2
firebase-admin:12.1.0
[REQUIRED] Test case
In a onDocumentWritten Cloud Function V2 in the logs panel when clicking "Show entries from this trace", only one log is shown.
[REQUIRED] Steps to reproduce
Deploy a onDocumentWritten Cloud function gen2, trigger it by changing a document in firestore. Go to logs Find the corresponding log click "Show entries from this trace"
[REQUIRED] Expected behavior
In Cloud function v1 it was very easy to group them by ExecutionID, this is no longer possible in V2 Issue #1331 suggested "Show entries from this trace" howevert this is showing only that specific log, not all the other logs related to that execution
[REQUIRED] Actual behavior
Only one log is showing
Were you able to successfully deploy your functions?
Yes