Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This screen enables you to define the location of JDBC drivers, Log files and WhereScape products.
REPLACE WITH THIS IMAGE: Images/Settings/Locations Settings.png Image Added

Fields

Description

JDBC drivers

The location of the JDBC drivers. Click

REPLACE WITH THIS IMAGE: Images/Common_Icons/ellipsisbutton.png

Image Addedto change the location.

Log file

The location of the log file. Click

REPLACE WITH THIS IMAGE: Images/Common_Icons/ellipsisbutton.png

Image Added to change the location.

Working directory

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

RED Directory

The location of the WhereScapeRED installation directory.

Tip
titleTip
:

A warning icon

REPLACE WITH THIS IMAGE: Images/Common_Icons/warning.png

Image Added is displayed if WhereScape RED is not found in the specified directory. Click

REPLACE WITH THIS IMAGE: Images/Common_Icons/ellipsisbutton.png to

Image Added to change the location.

Note

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="581c0894-82b7-47f9-a365-596e3bb97a95"><ac:plain-text-body><![CDATA[


Note
titleNote

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.

...

Code Block
languagexml
<?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>