After enabling invocation logs, a tax-assessment Function still shows no diagnostic lines about which parcel ID failed. What else must be true for those custom lines to appear in Logging?
Select an answer to reveal the explanation.
Short Explanation
Default invocation records are the ticket stub; your own notes appear only if the handler actually prints. A silent function leaves nothing extra to search.
Full Explanation
Default invocation records are separate from application diagnostics. Your own lines appear only if the function prints via stdout/stderr or a language logger; the log event then carries data.src (STDOUT or STDERR) and data.message. A silent handler produces no custom lines to search. Sidecar rewrites and Vault settings are unrelated to capturing handler print output.