According to Microsoft Azure Diagnostics Part 4: Custom Logging Components and Azure Diagnostics 1.3 Changes:
Azure Diagnostics 1.3 does not support System.Diagnostic.Trace logs. Instead, you are to use EventSource. The System.Diagnostic.Trace logging statements can still be used in the emulated environment to write trace/debug statements to the Azure Compute Emulator console.
I have been searching for a sample of how to use the System.Diagnostics ETW (Event Tracing for Windows) framework in a simple way within Azure much like one would use logging frameworks like log4Net. Is there an easy way to wrap ETW into a log appender within log4Net in order that statements like the below can be written within an Azure solution.
Log.Info("My info logging statement.")
This shouldn't be difficult but I cannot find any simple samples out there for something like this.