By default, each log event is passed to the appenders that are associated
with the logger and to the appenders that are associated with the
logger's hierarchy. This is the meaning of the term
appender additivity.
For example, by default,
when a log event is processed by the logger Testing.MyProg.TraceMsgs,
the log message is also directed to the appenders that are referenced
in the Testing.MyProg and Testing loggers. If ADDITIVITY=FALSE, the
log message is directed to only the appenders that are referenced
by Testing.MyProg.TraceMsgs.
Note: You can also specify the
logger additivity in the logger's constructor by using the DECLARE
statement. For more information, see
DECLARE Statement, Logger Object.