Reputation: 81
Used Microsoft.Extensions.Logging.ILoggerFactory for by asp.net core web api logging and getting log in my local. Now I deployed it azure web app but cannot find the log file in Kudu. Any hints?
Upvotes: 1
Views: 461
Reputation: 479
Did you try to access your log files from the url like below?
https://xyz.azurewebsites.net/LogFiles/Log_13_April_2021.txt
"LogFiles" => Folder name where you have kept your files
"Log_13_April_2021.txt" => Name of your log file.
Upvotes: 2