Class Summary |
JavaUtilLoggingAdaptor |
Reroutes java.util.logging messages to the Redwood logging system. |
JavaUtilLoggingAdaptor.RedwoodHandler |
This is the bridge class which actually adapts java.util.logging calls to Redwood calls. |
LogRecordHandler |
A log message handler. |
OutputHandler |
An abstract handler incorporating the logic of outputing a log message,
to some source. |
PrettyLogger |
Primarily for debugging, PrettyLogger helps you dump various collection
objects in a reasonably structured way via Redwood logging. |
RedirectOutputHandler<LoggerClass,ChannelEquivalent> |
A class to redirect the output of Redwood to another logging mechanism,
e.g., java.util.logging. |
Redwood |
A hierarchical channel based logger. |
Redwood.ConsoleHandler |
Default output handler which actually prints things to the real System.out |
Redwood.FileHandler |
Handler which prints to a specified file
TODO: make constructors for other ways of describing files (File, for example!) |
Redwood.Record |
A log record, which encapsulates the information needed
to eventually display the enclosed message. |
Redwood.RecordHandlerTree |
A tree structure of record handlers |
Redwood.RedwoodChannels |
Represents a collection of channels. |
Redwood.Util |
A utility class for Redwood intended for static import
(import static edu.stanford.nlp.util.logging.Redwood.Util.*;),
providing a wrapper for Redwood functions and adding utility shortcuts |
RedwoodConfiguration |
A class which encapsulates configuration settings for Redwood. |
RedwoodPrintStream |
A PrintStream that writes to Redwood logs. |
RepeatedRecordHandler |
Filters repeated messages and replaces them with the number of times they were logged. |
RepeatedRecordHandler.ApproximateRepeatSemantics |
Judges two records to be equal if they come from the same place,
and begin with the same string, modulo numbers |
RepeatedRecordHandler.ExactRepeatSemantics |
Judges two records to be equal if they are from the same place,
and have the same message |
VisibilityHandler |
A filter for selecting which channels are visible. |