Class CoreLogger.SystemLog

  • All Implemented Interfaces:
    logger.CoreLogger.SystemLog
    Enclosing class:
    CoreLogger

    public class CoreLogger.SystemLog
    extends java.lang.Object
    implements logger.CoreLogger.SystemLog
    The System log type.
    • Constructor Summary

      Constructors 
      Constructor Description
      SystemLog()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void debug​(java.lang.String message)
      Makes a log entry with the "debug" severity level.
      void debug​(java.lang.String message, java.lang.Object... parameters)
      Makes a log entry with the "debug" severity level.
      void fatal​(java.lang.String message)
      Makes a log entry with the "fatal" severity level.
      void fatal​(java.lang.String message, java.lang.Object... parameters)
      Makes a log entry with the "fatal" severity level.
      void fatal​(java.lang.String message, java.lang.Throwable thrown)
      Makes a log entry with the "fatal" severity level.
      void fatal​(java.lang.String message, java.lang.Throwable thrown, java.lang.Object... parameters)
      Makes a log entry with the "fatal" severity level.
      void info​(java.lang.String message)
      Makes a log entry with the "info" severity level.
      void info​(java.lang.String message, java.lang.Object... parameters)
      Makes a log entry with the "info" severity level.
      void trace​(java.lang.String message)
      Makes a log entry with the "trace" severity level.
      void trace​(java.lang.String message, java.lang.Object... parameters)
      Makes a log entry with the "trace" severity level.
      void warning​(java.lang.String message)
      Makes a log entry with the "warning" severity level.
      void warning​(java.lang.String message, java.lang.Object... parameters)
      Makes a log entry with the "warning" severity level.
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SystemLog

        public SystemLog()
    • Method Detail

      • fatal

        public void fatal​(java.lang.String message)
        Makes a log entry with the "fatal" severity level.
        Specified by:
        fatal in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
      • fatal

        public void fatal​(java.lang.String message,
                          java.lang.Object... parameters)
        Makes a log entry with the "fatal" severity level.
        Specified by:
        fatal in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        parameters - An array of parameters that will be inserted into the message if the message contains '{n}' (using MessageFormat).
      • fatal

        public void fatal​(java.lang.String message,
                          java.lang.Throwable thrown)
        Makes a log entry with the "fatal" severity level.
        Specified by:
        fatal in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        thrown - The exception to log.
      • fatal

        public void fatal​(java.lang.String message,
                          java.lang.Throwable thrown,
                          java.lang.Object... parameters)
        Makes a log entry with the "fatal" severity level.
        Specified by:
        fatal in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        parameters - An array of parameters that will be inserted into the message if the message contains '{n}' (using MessageFormat).
        thrown - The exception to log.
      • warning

        public void warning​(java.lang.String message)
        Makes a log entry with the "warning" severity level.
        Specified by:
        warning in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
      • warning

        public void warning​(java.lang.String message,
                            java.lang.Object... parameters)
        Makes a log entry with the "warning" severity level.
        Specified by:
        warning in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        parameters - An array of parameters that will be inserted into the message if the message contains '{n}' (using MessageFormat).
      • info

        public void info​(java.lang.String message)
        Makes a log entry with the "info" severity level.
        Specified by:
        info in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
      • info

        public void info​(java.lang.String message,
                         java.lang.Object... parameters)
        Makes a log entry with the "info" severity level.
        Specified by:
        info in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that should be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        parameters - An array of parameters that will be inserted into the message if the message contains '{n}' (using MessageFormat).
      • debug

        public void debug​(java.lang.String message)
        Makes a log entry with the "debug" severity level.
        Specified by:
        debug in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that might be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
      • debug

        public void debug​(java.lang.String message,
                          java.lang.Object... parameters)
        Makes a log entry with the "debug" severity level.
        Specified by:
        debug in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that might be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        parameters - An array of parameters that will be inserted into the message if the message contains '{n}' (using MessageFormat).
      • trace

        public void trace​(java.lang.String message)
        Makes a log entry with the "trace" severity level.
        Specified by:
        trace in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that might be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
      • trace

        public void trace​(java.lang.String message,
                          java.lang.Object... parameters)
        Makes a log entry with the "trace" severity level.
        Specified by:
        trace in interface logger.CoreLogger.SystemLog
        Parameters:
        message - A message key that might be found in a resource bundle to enable internationalization. If the key isn't found the string itself is logged.
        parameters - An array of parameters that will be inserted into the message if the message contains '{n}' (using MessageFormat).