jsx_logger_config,
or if that is not provided, by the default configuration file located at $GI/logger.xml.
The DTD of that configuration file is as follows:
<!ELEMENT configuration (handler | logger)* >
<!ELEMENT handler (property)* >
<!ATTLIST handler name CDATA #REQUIRED
class CDATA #REQUIRED
lazy (true|false) "false"
require (true|false) "false"
level (OFF|FATAL|ERROR|WARN|INFO|DEBUG|TRACE) #IMPLIED>
<!ELEMENT logger (property | handler-ref)* >
<!ATTLIST logger name CDATA #REQUIRED
useParent (true|false) "true"
level (OFF|FATAL|ERROR|WARN|INFO|DEBUG|TRACE) #IMPLIED>
<!-- Properties allow for bean-style configuration of handlers and loggers.
The class should have a setter method corresponding to the name of the
property. -->
<!ELEMENT property (EMPTY)>
<!ATTLIST property name CDATA #REQUIRED
value CDATA #REQUIRED
eval (true|false) "false">
<!ELEMENT handler-ref (EMPTY)>
<!ATTLIST handler-ref name CDATA #REQUIRED>
| Method Summary | |
|---|---|
| void | addHandler(objHandler : jsx3.util.Logger.Handler) Add a Handler instance to this manager's registry. |
| void | addLogger(objLogger : jsx3.util.Logger) Add a Logger instance to the manager's registry. |
| jsx3.util.Logger.Handler | getHandler(strName : ?) Returns a Handler from the manager's registry by name, or null if no such Handler is registered. |
| Array<String> | Returns a list containing the names of all the handlers registered with this manager. |
| jsx3.util.Logger | getLogger(strName : ?) Returns a Logger from this manager's registry by name, or null if no such Logger is registered. |
| static jsx3.util.Logger.Manager | Singleton accessor method. |
| Methods Inherited From jsx3.lang.Object |
|---|
| clone, equals, eval, getClass, getInstanceOf, getInstanceOfClass, getInstanceOfPackage, instanceOf, isInstanceOf, isSubclassOf, jsxmix, jsxsuper, jsxsupermix, setInstanceOf, toString |
| Method Detail |
|---|