hello All, I have created a WCF Application.now i want to integrate the Logging Application Block. i want to Log them into a txt file as well. (this is my main concern). when doing so much googling i find out about Flatfilelistner and i configured my App.config using following Listner but it didn't work for me. <add fileName="D:\trace.log" header="----------------------------------------" footer="----------------------------------------" formatter="Text Formatter" listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.FlatFileTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" traceOutputOptions="Callstack" type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.FlatFileTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" name="FlatFile TraceListener" /> can any one please guide me to resolve this problem.
Amit Agarwal