How do you Disable the IdvmService.svclog File?
Procedure Steps
1. Open the Web.config file which is typically located at C:\Inetpub\wwwroot\Lnl.OG.Services\IdvmWebHost.
2. Comment out a few sections of code using <! at the beginning of the line and a > at the end of the line of code.
3. You will need comment out the following sections of code:
2. Comment out a few sections of code using <! at the beginning of the line and a > at the end of the line of code.
3. You will need comment out the following sections of code:
3a: <add switchValue="Warning, ActivityTracing" name="System.ServiceModel">
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
3b: <add switchValue="All" name="System.ServiceModel.MessageLogging">
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
An example of this is:
<! This entry will enable WCF activity loggging >
<!
<add switchValue="Warning, ActivityTracing" name="System.ServiceModel">
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
>
<! This entry will enable WCF message loggging >
<!
<add switchValue="All" name="System.ServiceModel.MessageLogging">
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
>
<! This entry will enable WCF activity loggging >
<!
<add switchValue="Warning, ActivityTracing" name="System.ServiceModel">
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
>
<! This entry will enable WCF message loggging >
<!
<add switchValue="All" name="System.ServiceModel.MessageLogging">
<listeners>
<add name="WCF Service Model File Listener"/>
</listeners>
</add>
>
Applies To
Browser-Based Applications; OnGuard (All versions)