InterviewSolution
| 1. |
What Is The Purpose Of Filter Object? |
|
Answer» FILTER Object − The Filter object is used to analyze logging information and make further decisions on whether that information should be LOGGED or not. An Appender objects can have several Filter objects associated with them. If logging information is passed to a PARTICULAR Appender object, all the Filter objects associated with that Appender need to APPROVE the logging information before it can be published to the attached DESTINATION. Filter Object − The Filter object is used to analyze logging information and make further decisions on whether that information should be logged or not. An Appender objects can have several Filter objects associated with them. If logging information is passed to a particular Appender object, all the Filter objects associated with that Appender need to approve the logging information before it can be published to the attached destination. |
|