Package util

Class Logger

java.lang.Object
util.Logger

public class Logger extends Object
  • Constructor Details

    • Logger

      public Logger()
  • Method Details

    • logFatal

      public static void logFatal(String error)
      Logs fatal errors in format: [FATAL] [{Class calling the method}] {error}
      Then, exits with exit value: -1
      Parameters:
      error - The fatal error message passed to log.
    • logAssetError

      public static void logAssetError(String error)
      Logs asset errors in format: [ASSET ERROR] [{Class calling the method}] {error}
      Then, exits with exit value: -1
      Parameters:
      error - The asset error message passed to log.
    • logInfo

      public static void logInfo(String info)
      Logs information in format: [INFO] [{Class calling the method}] {info}
      Parameters:
      info - The string passed to log.
    • logSystemCompatibilityError

      public static void logSystemCompatibilityError()
    • logEngineError

      public static void logEngineError()
    • debugLog

      public static void debugLog(String log)
      Logs debug information in format: [{Class calling the method}] {info}
      Parameters:
      log - The string passed to log.