Log4s : Initializing the log4s Framework

Initializing the log4s Framework
The settings for the log4s framework can be entered in the .ini file under the [log4s] stanza or determined programmatically. This allows the user to manipulate the logging of packaged images. Entries in the ini file (or their programmatic equivalents)
The formatting of each entry in the ini file must conform to the following rules:
debugEnabled=true
quietMode=false
globalLevel=All
Common values used to initialize the log4s framework follow:
someCaseSensitiveLoggerName:
a string that names the EsLogger, e.g., root or Vast.
levelName:
one of case insensitive ALL, DEBUG, INFO, WARN, ERROR, FATAL, or OFF.
patternLayout:
EsPatternLayout or the string name of one of its user-created sub classes.
patternString:
a string in single quotes of the conversion specifiers for the EsAppender, e.g., '%d %m'.
boolean:
true or false.
someCaseSensitiveAppenderName:
a string that names the appender, e.g., errorAppender.
someCaseSensitiveFilterName:
a string that names the filter, e.g., infoLevelMatchFilter.
fileName:
a string specifying the name of a writable file on your system.
fileAppendBoolean:
specifies whether an existing file should be appended (true) or not (false.)
socketAppenders:
string in single quotes which specifies either ipAddress or hostName.
maxFileSize:
the maximum file size in bytes.
timeZoneName
the name of a time zone that exists on your system.
retryCount:
the number of times a socket appender will try to establish a connection.
retrySeconds:
the number of seconds a socket appender will wait between connection retries.