I cannot get the simplest Firebase Cloud Function to execute properly. The code below does not produce any console logging, except for the error: Error: function crashed out of request scope and Function invocation was interrupted.
exports.testFunction = functions.firestore.document('trigger/dummy2').onUpdate(async (change : any, context : any) => { console.log( "How can this fail?" ); });