Package util
Class Logger
java.lang.Object
util.Logger
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Logs debug information in format:[{Class calling the method}] {info}
static void
logAssetError
(String error) Logs asset errors in format:[ASSET ERROR] [{Class calling the method}] {error}
Then, exits with exit value:-1
static void
static void
Logs fatal errors in format:[FATAL] [{Class calling the method}] {error}
Then, exits with exit value:-1
static void
Logs 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.
-