I'm using Enterprise Library 3.1 for logging exception for some web application. All exception should be written to a single xml file (say Errors.xml) on the same server the application run. The problem that sometime in addition to Errors.xml I see files with names like this: 7b53e14b-4b92-43b5-94a0-09666f1c8c4c**ServerName**.xml where ServerName is name of the server. These file are usually small (50kb), but are some with 500kb size. The code that writes an exception to a log is next:
...
SyncLock threadlock // static variable
ExceptionPolicy.HandleException(ex, "Global Policy")
End SyncLock
...
I can't understand why all these strange files are created. Can somebody help with this?