Package util
Class Logger
java.lang.Object
util.Logger
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidLogs debug information in format:[{Class calling the method}] {info}static voidlogAssetError(String error) Logs asset errors in format:[ASSET ERROR] [{Class calling the method}] {error}
Then, exits with exit value:-1static voidstatic voidLogs fatal errors in format:[FATAL] [{Class calling the method}] {error}
Then, exits with exit value:-1static voidLogs information in format:[INFO] [{Class calling the method}] {info}static void
-
Constructor Details
-
Logger
public Logger()
-
-
Method Details
-
logFatal
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
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
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
Logs debug information in format:[{Class calling the method}] {info}- Parameters:
log- The string passed to log.
-