Cloud function hides nested logs

Viewed 28

I have a Cloud Function in Python that prints a dictionary that has dictionaries and arrays in it.

The cloud functions omits the nested dictionaries and arrays and just logs "...". How can I see the full log?

enter image description here

1 Answers

This happen because I am using cloud functions v2. I had to check the logs on the logs explorer

Related