I am developing Azure WorkerRole (). In the Compute Emulator console, I see all Trace.WriteLine () messages, but only those that are generated in OnStart () seem to be stored in the repository.
My ServiceConfiguration.Local.csfg has:
<Role name="MyWorkerRole"> <Instances count="1" /> <ConfigurationSettings> <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true" /> </ConfigurationSettings> </Role>
My WorkerRole.cs has:
public override void Run() { Trace.WriteLine("Called from Run(), where does this trace go???", "Information");
source share