client.log
Logs a message to the GUI console.
Parameter
Type
Description
title
String
The title of the log (highlighted purple)
message
String
The message content
isSubLog
Bool (Optional)
If true, adjusts the styling of the log in the gui. (This is used for multi-lined notifications)
Example Usage
execute(client, message, args) {
client.log("Test", "This is a test log");
},
Last updated