Print Page | Close Window

How to disable logging

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce Classic
Forum Discription: For .NET 2.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=973
Printed Date: 10-Jun-2026 at 7:09pm


Topic: How to disable logging
Posted By: f3rland
Subject: How to disable logging
Date Posted: 22-Oct-2008 at 7:40am
I tried removing that node from IdeaBlade.ibconfig and that didnt work
<logging>
    <archiveLogs>false</archiveLogs>
    <logFile>DebugLog.xml</logFile>
    <usesSeparateAppDomain>false</usesSeparateAppDomain>
    <port>0</port>
</logging>

I dont want any of those files on the client computer :
DebugLog.css
DebugLog.xml
DebugLog.xsl

Thanks

-------------
F3



Replies:
Posted By: davidklitzke
Date Posted: 22-Oct-2008 at 8:35am
Try setting the name of the logFile to the empty string:  e.g.,

<logging>
    <archiveLogs>false</archiveLogs>
    <logFile></logFile> 
    </logging>



Posted By: f3rland
Date Posted: 22-Oct-2008 at 8:38am
That works!

Thank you davidklitzke

-------------
F3



Print Page | Close Window