I have some code that will be logging using the Logging Application Block in Enterprise Library 5.0 from different threads. Is the LAB thread safe? Can I log like normal fro
As far as I know,Enterprise Library 3.1 Logging is not thread safe.
There is not lock around GetAvailableTraceListeners(IList traceListeners) call in LogWriter
class, which used static in Logger class.