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.
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.
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.