Hi,
Can you please clarify the demand on configuring the logging related settings in interactionworkspace.exe.config file exactly?
You can define the logging setting under [log] section in your Workspace application object under CME. To define how many old files to keep please configure: log.expire option.
log.expire
• Default Value: 10
• Valid Values: An integer value from 1 through 100.
• Changes take effect: Immediately.
• Description: Specifies if log files are to be stored. If they are stored, specifies the maximum number of files (segments) to be stored before the oldest file is removed. The value $number$ sets the maximum number of log files to store.
If it is required to define how many old files to keep in interactionworkspace.exe.config file, use maxSizeRollBackups parameter:
<maxSizeRollBackups value="10" />
maxSizeRollBackups - defines the maximum number of backup files that are kept before the oldest is erased.
Since WDE uses log4net library to provide logging feature refer to log4net documentation for more details on File Appender configuration.
Roman T