Platform issues ...
Platform issues ...
These represent the standard LOG4J event levels. Note that Debug is called Trace here, because debug is a reserved word in D
An appender that does nothing. This is useful for cutting and pasting, and for benchmarking the tango.log environment.
Append to a configured OutputStream
Base class for all Appenders. These objects are responsible for emitting messages sent to a particular logger. There may be more than one appender attached to any logger. The actual message is constructed by another class known as an EventLayout.
A simple layout comprised only of time(ms), level, name, and message
Loggers are named entities, sometimes shared, sometimes specific to a particular portion of code. The names are generally hierarchical in nature, using dot notation (with '.') to separate each named section. For example, a typical name might be something like "mail.send.writer"
Manager for routing Logger calls to the default hierarchy. Note that you may have multiple hierarchies per application, but must access the hierarchy directly for root() and lookup() methods within each additional instance.
Contains all information about a logging event, and is passed around between methods once it has been determined that the invoking logger is enabled for output.