Package org.apache.log
Interface LogTarget
Deprecated.
Will be dropped in 3.3
LogTarget is a class to encapsulate outputting LogEvent's.
 This provides the base for all output and filter targets.
 Warning: If performance becomes a problem then this
 interface will be rewritten as a abstract class.
- 
Method Summary
Modifier and TypeMethodDescriptionvoidprocessEvent(LogEvent event) Deprecated.Process a log event. 
- 
Method Details
- 
processEvent
Deprecated.Process a log event. In NO case should this method ever throw an exception/error. The reason is that logging is usually added for debugging/auditing purposes and it would be unacceptable to have your debugging code cause more errors.- Parameters:
 event- the event
 
 -