0

Please advice on the best practice to use in Azure Web Job logging? Still haven't found a proper mechanism to use for this?

Logging levels - Info, Error mainly are needed.

I have referred the below links.

Logging in Azure web jobs

How can I do logging in Azure Web Jobs?

Logging in Azure web jobs

yala_cat
  • 309
  • 4
  • 21

1 Answers1

0

I used the following mechanism to overcome this problem.

Enable diagnostic logging - Refer this

For output stream logging use -> Console.Out.Writeline();

For Error stream logging use -> Console.Error.Writeline()

This will create the relevant CSV file under the selected blob container without truncating the logs.

yala_cat
  • 309
  • 4
  • 21