Package org.apache.log4j.spi

Examples of org.apache.log4j.spi.Filter.decide()


      Filter f = this.headFilter;

FILTER_LOOP:
      while (f != null) {
        switch (f.decide(event)) {
        case Filter.DENY:
          return;

        case Filter.ACCEPT:
          break FILTER_LOOP;
View Full Code Here


    Filter f = this.headFilter;
   
    FILTER_LOOP:
    while(f != null) {
      switch(f.decide(event)) {
      case Filter.DENY: return;
      case Filter.ACCEPT: break FILTER_LOOP;
      case Filter.NEUTRAL: f = f.getNext();
      }
    }
View Full Code Here

/*     */     }
/*     */
/* 219 */     Filter f = this.headFilter;
/*     */
/* 222 */     while (f != null) {
/* 223 */       switch (f.decide(event)) { case -1:
/* 224 */         return;
/*     */       case 1:
/* 225 */         break;
/*     */       case 0:
/* 226 */         f = f.next;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.