Esempio n. 1
0
 @Override
 public FilterReply decide(ILoggingEvent event) {
   Marker marker = event.getMarker();
   if (!isStarted()) return FilterReply.NEUTRAL;
   if (null == marker) return onMismatch;
   if (markerToMatch.contains(marker)) return onMatch;
   return onMismatch;
 }