I am using the azure functions for a table insert event trigger, specifically the durable functions, and I'm trying to to produce some logs in my activity function.
The problem is that the activity function does not receive any "ILogger", nor does the orchestrator, thus I don't have any access and cannot produce logs for debug.
The overall flow is:
HTTP request => Duarble HTTP starter => Durable functions orchestrator => Durable function activity.
Is there a way to create a logger instance for some class deriving from ILogger? Or perhaps a way to pass the ILogger instance from the HTTP starter down to the activity function?
Any solution would be much appreciated!