Reputation: 15306
I'm creating some custom application logs in my web application with log4net for my Azure WebRole.
These are moved to blob storage every hour by the DiagnosticManager. My setup is the same as the code sample on windowesazure.com.
When running the Azure Emulator i can open the directory of the local storage at any time to read the logs before they're moved to blob storage.
How can I browse the local storage when deployed in the real cloud?
Upvotes: 1
Views: 266
Reputation: 5513
LocalStorage is a VHD that is mounted within an Azure role instance when that instance is started up. The only external visiblity to that VHD is to remote desktop into the machine and browse it there. The VHD is not accessible outside of the instance to which it is attached.
Upvotes: 0