@borrrden Sorry I don’t have much experience with MS System Diagnostics. I have been using log4net and nlog…
So I built Couchbase lite again using Visual Studio with the word “VERBOSE” in Conditional compilation symbols field. Is that all I need to do for the two couchbase dlls?
I then included the dlls in my project and added a configuration section in my web.config.
<system.diagnostics>
<trace autoflush=“true” indentsize=“4” >
<listeners>
<add name=“myListener”
type=“System.Diagnostics.TextWriterTraceListener”
initializeData=“C:\temp\logs\couchbase.txt” />
<remove name=“Default”></remove>
</listeners>
</trace>
</system.diagnostics>
Now I can see all messages from my application but no message from Couchbase… Am I missing something?
Thanks.