The logger name associates a logger with a log message. You can
send log messages to be processed by a logger by specifying the logger
name as the
name argument in
the LOG4SAS_LOGEVENT function.
A logger is an ancestor
of another logger if the logger name, followed by a dot, is the prefix
of the other logger. The following names are logger names:
Testing
Testing.MyProg
Testing.MyProg.TraceMsgs
Testing is the parent
logger and the ancestor of the loggers MyProg and TraceMsgs. MyProg
is the ancestor of TraceMsgs. The logger Testing.MyProg.TraceMsgs
provides a message category that can be used to log trace messages
when you are testing the program MyProg.
The hierarchical organization
of loggers enables loggers to inherit levels and appenders from their
ancestors. For information about configuring loggers in a hierarchy,
see
Hierarchical Logger Names.