We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa762c commit 7c25851Copy full SHA for 7c25851
app/functions/document_extractor/function_app.py
@@ -154,7 +154,7 @@ async def extract_document(req: func.HttpRequest) -> func.HttpResponse:
154
}
155
]
156
except Exception as e:
157
- logger.error(f"Error processing record {record_id}: {str(e)}", exc_info=True)
+ logger.error("Error processing record %s: %s", record_id, str(e), exc_info=True)
158
output_values = [
159
{
160
"recordId": record_id,
0 commit comments