I'm using Microsoft enterprise library 5.0 to save logs. I saved Trace Event Type(Warning and Error) to file using RollingFlatFile ErrorTraceListener, found error message like

"Message: Processing of the message failed. See summary information below for more information. Should this problem persist, stop the service and check the configuration file(s) for possible error(s) in the configuration of the categories and sinks."

Is it default error message from enterprise library? If so, please advice me, this error is occured from where and how to solve.

Thanks.

link|improve this question
feedback

1 Answer

This can be caused by having a null string in the list of categories for the LogEntry. Something like this should work:

LogEntry logEntry = new LogEntry {
    Message = "This is a message"
};
logEntry.Categories.Add("General");

Logger.Write(logEntry);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.