firebase-functions
                                
                                 firebase-functions copied to clipboard
                                
                                    firebase-functions copied to clipboard
                            
                            
                            
                        Firebase Functions v2 missing labels for documentOnwritten
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
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
Hi @jobweegink
Do you know whether this problem still exists in the latest version?
Hey @jobweegink. We need more information to resolve this issue but there hasn't been an update in 7 weekdays. I'm marking the issue as stale and if there are no new updates in the next 3 days I will close it automatically.
If you have more information that will help us get to the bottom of this, just add a comment!
Since there haven't been any recent updates here, I am going to close this issue.
@jobweegink if you're still experiencing this problem and want to continue the discussion just leave a comment here and we are happy to re-open this.