Package ch.njol.skript.log.LogHandler

Examples of ch.njol.skript.log.LogHandler.LogResult


    if (entry == null)
      return;
    if (Skript.testing() && node != null && node.debug())
      System.out.print("---> " + entry.level + "/" + ErrorQuality.get(entry.quality) + ": " + entry.getMessage() + " ::" + LogEntry.findCaller());
    for (final LogHandler h : handlers) {
      final LogResult r = h.log(entry);
      switch (r) {
        case CACHED:
          return;
        case DONT_LOG:
          entry.discarded("denied by " + h);
View Full Code Here

TOP

Related Classes of ch.njol.skript.log.LogHandler.LogResult

Copyright © 2018 www.massapicom. 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.