Windows Azure:broken logging after migration to the new SDK 1.3

Posted by cloud.dev on Stack Overflow See other posts from Stack Overflow or by cloud.dev
Published on 2010-12-30T18:02:01Z Indexed on 2010/12/31 5:53 UTC
Read the original article Hit count: 221

Filed under:
|

Hi, pls, help.

I've migrated to new SDK 1. (Full-IIS mode)

I use the following logging: case TraceLevel.Error: Trace.TraceError(message); break; case TraceLevel.Warning: Trace.TraceWarning(message); break; case TraceLevel.Info: Trace.TraceInformation(message); break; case TraceLevel.Verbose: Trace.WriteLine(message); break;

it worked fine until I migrated to the new SDK. now, logging works only for Worker Roles. Web-Role can log only inside OnStart-method of WebRole.cs in other cases: logged nothing

I understand that Full-IIS means different domains. so, I must call someway WaIIS.exe from w3wp.exe or ...?

© Stack Overflow or respective owner

Related posts about logging

Related posts about Azure