I created a custom trace log for day to day bases, but it has some conflicts when writing the trace log in hosted web services path.
My custom trace log has its own folder path and file name. So based upon the file path and file name mentioned in the app config file, the trace log will be capturing.
If the folder path is not specified in the app config file, the tracer automatically chooses the application start up path.
If I hosted the dll into server how to write the trace log in the hosted path, because the application start up path is not there in the hosted service. So how to take the path to write the trace log in hosted path.
I used the tracer given into the .net that will be automatically capture the trace log in web service hosted path. So how is it possible?
This my app config code:
<TextListener folderpath="" filepath="TraceLog.txt" tracefilenamestyle="PerDate" tracelevel="Error" type="Tracing.Listener,CDS.Tools"/>