This screen enables you to define the location of JDBC drivers, Log files and WhereScape products.

Fields

Description

JDBC drivers

The location of the JDBC drivers. Click to change the location.

Log file

The location of the log file. Click to change the location.

Working directory

The location of the working directory (read-only).

RED Directory

The location of the WhereScapeRED installation directory.

Tip

A warning icon is displayed if WhereScape RED is not found in the specified directory. Click to change the location.


Note

To configure the log file size and the number of log files, go to C:\Users\[user name]\WhereScape\3D and edit the file log4j.xml. Change the values of the parameters MaxFileSize and MaxBackupIndex.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
 
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
<param name="Target" value="System.out"/>
<param name="Threshold" value="DEBUG"/>
 
<layout class="org.apache.log4j.PatternLayout">
<!-- The default pattern: Date Priority [Category] Message\n -->
<param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
</layout>
</appender>
 
<appender name="FILE" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="${user.home}/WhereScape/3D/WhereScape 3D.log"/>
<param name="MaxFileSize" value="5MB"/>
<param name="MaxBackupIndex" value="3"/>
<param name="Threshold" value="DEBUG"/>
 
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d{dd-MM-yyyy HH:mm:ss,SSS} %-5p [%c{1}] %m%n"/>
</layout>
</appender>
 
<root>
<appender-ref ref="FILE"/>
</root>
 
</log4j:configuration>



  • No labels