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.19
Committed: Sat Mar 1 01:15:54 2003 UTC (21 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.18: +2 -2 lines
Log Message:
Set default logging level to SYSMSG rather than DEBUG.

File Contents

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