Issue in Azure function app

  • Thread starter Thread starter Gopal_Shn
  • Start date Start date
G

Gopal_Shn

Guest
hi all Experts.


I am calling REST api to return large zip file which I download locally. Then unzip it and upload to BLOB storage.

While this works fine locally in visual studio, when I publish it to azure function app it doesnt work as expected.


in function app monitoring, it shows the app ran successfully with no error logged.

How can I troubleshoot this?


I am downloading file locally, unzipping it and then uploading to BLOB

For this , I tried to use D:/home as well as D:/local folder as the local folder on azure app.

What might be the issue?


Since there is no error displayed, i want to add some logging to my c# code which can write logs to azure function app.

Any idea how to do this? I looked up on the net, found that I need to add some custom library thr' nuget but none of them satisfy my requirement.


My main Run function has Tracewriter logger object as parwameter, but I want to log thr' the subsequent sub procedure calls.

How can I achieve this?

Continue reading...
 
Back
Top