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.2
Committed: Wed Dec 13 18:34:16 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.1: +74 -0 lines
Log Message:
MERGE: Merged the SERVER_PACKAGEBUILD branch back into the HEAD trunk.

File Contents

# Content
1 # This file contains system properties that should
2 # be used as defaults by the I-Scream CORE
3 #
4 # $Author: ajm4 $
5 # $Id: default.properties,v 1.17 2000/12/13 13:40:29 ajm4 Exp $
6
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
34 # Currently unused, but will allow the
35 # user to select what logger they use
36 # Please choose the Logger class that you wish to use
37 # for system logging. Choices are, at present;
38 #
39 # ScreenLogger - Logs everything to the screen
40 # [Params = none]
41 # FileLogger - Logs everything to a file
42 # [FileLogger.filename = logfile name]
43 # MultiLogger - Logs to both the screen and a file
44 # [uses parameters of the loggers it uses]
45 # SimpleGUILogger - Logs to a nice GUI !
46 # [SimpleGUILogger.maxMessages = maximum number of lines to
47 # hold in the window]
48 # SimpleSwingLogger - Logs to a nicer GUI!
49 # [SimpleSwingLogger.maxMessages = maximum number of lines to
50 # hold in the window]
51 #
52 # [default = ScreenLogger]
53 uk.ac.ukc.iscream.LoggerPackage=uk.ac.ukc.iscream.core.loggers
54 uk.ac.ukc.iscream.LoggerClass=ScreenLogger
55
56 uk.ac.ukc.iscream.LoggerClass.FileLogger.filename=/usr/local/proj/co600_10/servercore.log
57
58 uk.ac.ukc.iscream.LoggerClass.SimpleSwingLogger.maxMessages=1000
59 uk.ac.ukc.iscream.LoggerClass.SimpleGUILogger.maxMessages=1000
60
61 # A list of components that should be started by the component manager
62 # ORDER IS IMPORTANT
63 # Ensure you read all documentation regarding the order of starting
64 # components
65 #
66 # Core - Must be first
67 # FilterManager - doesn't matter
68 # DBInterface & ClientInterface - Must be before RootFilter
69 # RootFilter - Must be after above, and before Filter
70 # Filter - Must be after above
71 #
72 # Thus a typical order is:
73 # Core;FilterManager;DBInterface;ClientInterface;RootFilter;Filter
74 uk.ac.ukc.iscream.ComponentList=Core;FilterManager;DBInterface;ClientInterface;RootFilter;Filter