Reputation: 898
I'm migrating existing ASP.NET Web site to Azure Web Site (not the Cloud Service). The Web Site uses EL for logging and exception handling. The issue is that I do not see my trace.log file when opening the Azure folder over FTP.
In IIS I had to set right permissions to the folder. But with Azure I do not have that option.
Does anyone uses logging to a file on Azure Web Site?
Upvotes: 1
Views: 384
Reputation: 15850
Consider saving your traces to a SQL Azure databases or implementing a trace provider that would save them to storage. I do not believe you can use the file system on Azure Websites for anything but deployment
Upvotes: 1