I deployed a python function to google cloud which I use as a backend http hook for a mobile app via google firebase. The mobile app sends some data to the firebase backend, the function is triggered and sends some data back to the mobile app. This approach worked well and I am quite happy with its functionality.
In this python function I used python's print()
function which then appeared in the logs on firebase. This also worked well until a month or so, but now the logs are simply empty. Not even the execution of the function shows up anymore. However the function still works when I trigger it from the app. I have heard from a friend that stdout does not work anymore, but why does python print()
not work anymore? I am puzzled by this behavior, can anybody enlighten me?