ILogger
Base class used to interface with the crafttweaker.log file and other loggers (such as the player logger).
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
import crafttweaker.api.ILogger;
Methods
debug
Logs a debug message.
Return Type: void
ILogger.debug(message as string) as void
logger.debug("message");
Parameter | Type | Description |
---|
message | string | message to be logged. |
error
Logs an error message.
Return Type: void
ILogger.error(message as string) as void
logger.error("message");
Parameter | Type | Description |
---|
message | string | message to be logged. |
info
Logs an info message.
Return Type: void
ILogger.info(message as string) as void
logger.info("message");
Parameter | Type | Description |
---|
message | string | message to be logged. |
trace
Logs a trace message.
Return Type: void
ILogger.trace(message as string) as void
logger.trace("message");
Parameter | Type | Description |
---|
message | string | message to be logged |
warning
Logs a warning message.
Return Type: void
ILogger.warning(message as string) as void
logger.warning("message");
Parameter | Type | Description |
---|
message | string | message to be logged. |