azure,logging,sql-azure,windows-azure-storage,semantic-logging
In general we don't recommend storing log file data in Storage Tables. See the section entitled "Are you avoiding append-only and prepend-only patterns?" in the Storage Performance and Scalability Checklist.
prism,mef,bootstrap,semantic-logging
Your method signature doesn't match the number of parameters you pass to WriteEvent. If you change it to this it should work: public void PrismEvent(string message, Category category, Priority priority) { if (IsEnabled()) { WriteEvent(1, message, category, priority); // ^ ^ } } Matching signatures are required for it to...
First, I strongly recommend using the out-of-process host for production. The reasons for this are primarily performance related. Dynamic configuration is a feature of the out-of-process service. All you need to do is modify the level attribute on the corresponding <eventSource /> and the change should be picked up automatically....
c#,logging,slab,semantic-logging
It sounds like TraceEvent is not detecting the update to your message. I would increment the version number of the event: [Event(1, Message = "New Message: {0}", Version = 1)] public void Starting(string name) { WriteEvent(1, name); } If not specified initial Version value is 0 so 1 is the...
azure,windows-azure-storage,azure-web-roles,azure-storage-blobs,semantic-logging
I think this blog post might help - https://robindotnet.wordpress.com/2014/07/19/implementing-slab-in-an-azure-service/