Class Logging

Object
Static
Logging

public final class Logging extends Static
A set of utilities method for configuring loggings in SIS. This class provides also some convenience static methods, including:
Since:
0.3
  • Method Details

    • getLogger

      public static Logger getLogger(Class<?> source)
      Returns a logger for the package of the specified class. This convenience method invokes Logger​.get­Logger(String) with the package name of the given class taken as the logger name.
      Parameters:
      source - the class which will emit a logging message.
      Returns:
      a logger for the specified class.
      Since:
      1.0
    • log

      @Deprecated(since="1.4", forRemoval=true) public static void log(Class<?> classe, String method, LogRecord record)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Replaced by complete­And­Log(null, record, classe, method) for encouraging the use of static Logger constants. Also the new name makes clear that the record is modified.
      Logs the given record to the logger associated to the given class.
      Parameters:
      classe - the class to report as the source of the logging message.
      method - the method to report as the source of the logging message.
      record - the record to log.
    • completeAndLog

      public static void completeAndLog(Logger logger, Class<?> classe, String method, LogRecord record)
      Completes the properties of the given record, then logs to the specified or inferred logger. If the logger argument is null, the logger is inferred from the other arguments. This convenience method performs the following steps:
      Parameters:
      logger - the logger where to log, or null for inferring from the logger or package name.
      classe - the class to report as the source of the logging message.
      method - the method to report as the source of the logging message.
      record - the record to complete and log.
      Since:
      1.4
    • unexpectedException

      public static boolean unexpectedException(Logger logger, Class<?> classe, String method, Throwable error)
      Invoked when an unexpected error occurred. This method logs a message at Level​.WARNING to the specified logger. The originating class name and method name can optionally be specified. If any of them is null, then it will be inferred from the error stack trace as described below. If the classe or method arguments are null, then the originating class name and method name are inferred from the given error using the first stack trace element for which the class name is inside a package or sub-package of the same name than the logger name. Explicit value for class and method names are preferred to automatic inference for the following reasons:
      • Automatic inference is not 100% reliable, since the Java Virtual Machine is free to omit stack frame in optimized code.
      • When an exception occurred in a private method used internally by a public method, we sometimes want to log the warning for the public method instead, since the user is not expected to know anything about the existence of the private method. If a developer really want to know about the private method, the stack trace is still available anyway.

      Example

      If the logger name is "org​.apache​.sis​.image", then this method will uses the first stack trace element where the fully qualified class name starts with "org​.apache​.sis​.image" or "org​.apache​.sis​.image​.io", but not "org​.apache​.sis​.imageio".
      Parameters:
      logger - where to log the error, or null for inferring a default value from other arguments.
      classe - the class where the error occurred, or null for inferring a default value from other arguments.
      method - the method where the error occurred, or null for inferring a default value from other arguments.
      error - the error, or null if none.
      Returns:
      true if the error has been logged, or false if the given error was null or if the logger does not log anything at Level​.WARNING.
      See Also:
    • recoverableException

      public static boolean recoverableException(Logger logger, Class<?> classe, String method, Throwable error)
      Invoked when a recoverable error occurred. This method is similar to unexpected­Exception(…) except that it does not log the stack trace and uses a lower logging level.
      Parameters:
      logger - where to log the error, or null for inferring a default value from other arguments.
      classe - the class where the error occurred, or null for inferring a default value from other arguments.
      method - the method name where the error occurred, or null for inferring a default value from other arguments.
      error - the error, or null if none.
      Returns:
      true if the error has been logged, or false if the given error was null or if the logger does not log anything at Level​.FINE.
      See Also:
    • ignorableException

      public static boolean ignorableException(Logger logger, Class<?> classe, String method, Throwable error)
      Invoked when an ignorable error occurred. This method is similar to unexpected­Exception(…) except that it uses a lower logging level.
      Parameters:
      logger - where to log the error, or null for inferring a default value from other arguments.
      classe - the class where the error occurred, or null for inferring a default value from other arguments.
      method - the method name where the error occurred, or null for inferring a default value from other arguments.
      error - the error, or null if none.
      Returns:
      true if the error has been logged, or false if the given error was null or if the logger does not log anything at Level​.FINER.
      Since:
      1.0
    • severeException

      public static boolean severeException(Logger logger, Class<?> classe, String method, Throwable error)
      Invoked when a severe error occurred. This method is similar to unexpected­Exception except that it logs the message at the SEVERE level.
      Parameters:
      logger - where to log the error, or null for inferring a default value from other arguments.
      classe - the class where the error occurred, or null for inferring a default value from other arguments.
      method - the method name where the error occurred, or null for inferring a default value from other arguments.
      error - the error, or null if none.
      Returns:
      true if the error has been logged, or false if the given error was null or if the logger does not log anything at Level​.SEVERE.
      See Also: