Currently I'm logging in blob storage by creating a List of string that i want to log and when the number of strings in the list crosses a number convert the list to a byte array and calling CloudBlockBlob.UploadFromStream..
I have recently come to know that I can also write to the blob directly one line at a time without creating the list of log-lines here.The article shows 'await destinationStream.WriteAsync'.
I would sincerely appreciate if someone could guide me as to how to shift towards this style..
I found a similar question asked a couple of years back but no answers to the same as well..
Thanks