Reputation: 1877
I have managed to set up my azure logs, how do I test if it is working?
This tutorial describes how to set up a log, but not how to test it.
Upvotes: 0
Views: 224
Reputation: 9192
You can install a site extension called "Azure Website Log Browser" which makes veiwing your logs an easy task.
For more information on how see here: http://blog.amitapple.com/post/2014/06/azure-website-logging/
Upvotes: 1
Reputation: 44096
You can test whether your logs are actually working by running some code that definitely logs information, then opening up the logs table (or blob, whatever your mechanism of choice was) in your storage account and checking whether the logs exist.
Recent versions of Visual Studio are able to examine the contents of a table. There are also some free tools out there that allow you to browse your azure storage account.
Upvotes: 0