ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/build/etc/default.properties
Revision: 1.7
Committed: Fri Mar 2 00:26:01 2001 UTC (23 years, 6 months ago) by tdb
Branch: MAIN
Changes since 1.6: +4 -4 lines
Log Message:
Use the FileLogger instead.

File Contents

# User Rev Content
1 tdb 1.2 # This file contains system properties that should
2     # be used as defaults by the I-Scream CORE
3     #
4 tdb 1.7 # $Author: tdb1 $
5     # $Id: default.properties,v 1.6 2001/02/25 20:55:27 tdb1 Exp $
6 tdb 1.2
7    
8     # These properties are REQUIRED by the system to tell it
9     # which ORB to use.
10     org.omg.CORBA.ORBClass= jacorb.orb.ORB
11     org.omg.CORBA.ORBSingletonClass= jacorb.orb.ORBSingleton
12    
13     # The logging verbosity to be used by the system,
14     # ie, how much information will be printed to the
15     # log file, where the number is:
16     #
17     # FATAL - (0) Fatal or Critical Errors
18     # ERROR - (1) All Errors
19     # WARNING - (2) Warnings
20     # SYSMSG - (3) System Component messages
21     # SYSINIT - (4) System Component initialisation
22     # DEBUG - (5) All debugging messages
23     #
24     # [default = 3]
25     uk.ac.ukc.iscream.Verbosity= 5
26    
27     # The directory containing all the configuration files
28     # for the system
29     #
30     # [default = cwd]
31     uk.ac.ukc.iscream.ConfigurationLocation=./etc
32     uk.ac.ukc.iscream.SystemConfigurationFile=system.conf
33 ajm 1.5
34     # The time in seconds that the system should wait before
35     # trying again to start it.
36     uk.ac.ukc.iscream.ComponentTimeout=5
37 tdb 1.2
38     # Currently unused, but will allow the
39     # user to select what logger they use
40     # Please choose the Logger class that you wish to use
41     # for system logging. Choices are, at present;
42     #
43     # ScreenLogger - Logs everything to the screen
44     # [Params = none]
45     # FileLogger - Logs everything to a file
46     # [FileLogger.filename = logfile name]
47     # MultiLogger - Logs to both the screen and a file
48     # [uses parameters of the loggers it uses]
49     # SimpleGUILogger - Logs to a nice GUI !
50     # [SimpleGUILogger.maxMessages = maximum number of lines to
51     # hold in the window]
52     # SimpleSwingLogger - Logs to a nicer GUI!
53     # [SimpleSwingLogger.maxMessages = maximum number of lines to
54     # hold in the window]
55     #
56     # [default = ScreenLogger]
57     uk.ac.ukc.iscream.LoggerPackage=uk.ac.ukc.iscream.core.loggers
58 tdb 1.7 uk.ac.ukc.iscream.LoggerClass=FileLogger
59 tdb 1.2
60 tdb 1.7 uk.ac.ukc.iscream.LoggerClass.FileLogger.filename=/home/cut/iscream/www/server.log
61 tdb 1.2
62     uk.ac.ukc.iscream.LoggerClass.SimpleSwingLogger.maxMessages=1000
63     uk.ac.ukc.iscream.LoggerClass.SimpleGUILogger.maxMessages=1000
64    
65     # A list of components that should be started by the component manager
66     # ORDER IS IMPORTANT
67     # Ensure you read all documentation regarding the order of starting
68     # components
69     #
70     # Core - Must be first
71     # DBInterface & ClientInterface - Must be before RootFilter
72     # RootFilter - Must be after above, and before Filter
73     # Filter - Must be after above
74 ajm 1.3 # FilterManager - Must be after the filters
75 tdb 1.6 # Client - Must be after the ClientInterface, but usually last
76 tdb 1.2 #
77     # Thus a typical order is:
78 tdb 1.6 # Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client
79     uk.ac.ukc.iscream.ComponentList=Core;DBInterface;ClientInterface;RootFilter;Filter;FilterManager;Client