Home Migration Guide Getting Started With Scripts Commands Examples
BracketHandlers

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.

script.zs
import crafttweaker.api.ILogger;

Methods

Logs a debug message.

Return Type: void

script.zs
// ILogger.debug(message as string) as void
logger.debug("message");
ParameterTypeDescription
Parameter
message
Type
string
Description
message to be logged.

Logs an error message.

Return Type: void

script.zs
// ILogger.error(message as string) as void
logger.error("message");
ParameterTypeDescription
Parameter
message
Type
string
Description
message to be logged.

Logs an info message.

Return Type: void

script.zs
// ILogger.info(message as string) as void
logger.info("message");
ParameterTypeDescription
Parameter
message
Type
string
Description
message to be logged.

Logs a trace message.

Return Type: void

script.zs
// ILogger.trace(message as string) as void
logger.trace("message");
ParameterTypeDescription
Parameter
message
Type
string
Description
message to be logged

Logs a warning message.

Return Type: void

script.zs
// ILogger.warning(message as string) as void
logger.warning("message");
ParameterTypeDescription
Parameter
message
Type
string
Description
message to be logged.