Created a web role project on Azure. Looking at the service definition file I see that it adds a LocalResources section -
<LocalResources>
<LocalStorage name="ProjName.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />
</LocalResources>
It seems to be using this for writing the log files. Each Azure compute instance also comes with some memory. I am assuming that this LocalStorage would use the memory we get with that instance and not create a storage account. Is that assumption correct?