Class Summary |
AbstractFileLoggingMechanism |
AbstractFileLoggingMechanism is an abstract class which
defines the format and location of log files,
so they all work consistently for the same application. |
SharedDatedFileLoggingMechanism |
This logging mechanism adds today's date to the shared log file name, and also
rolls logging over to a new file when dates change (the first new string
logged on a new date causes the current log file to close and a new log
file to be opened with today's date). |
SharedFileLoggingMechanism |
This logging mechanism is shared among all of the different logs
which attempt to use it, instead of creating a new log file for every
log (which the "Unique" logging mechanisms do). |
UniqueDatedFileLoggingMechanism |
This logging mechanism adds today's date to the log file name, and also
rolls logging over to a new file when dates change (the first new string
logged on a new date causes the current log file to close and a new log
file to be opened with today's date). |
UniqueFileLoggingMechanism |
This logging mechanism is the simplest implementation of a file logging
mechanism. |