Saon Mukherjee
Saon Mukherjee

Reputation: 81

Where to get my log of my application deployed in Azure web apps

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

Answers (1)

TarakPrajapati
TarakPrajapati

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

Related Questions