We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Inside the spigot API there is a base system to send messages inside of console. I wanted to make it quicker to do this.
A info message is a message that can be used to send information. (See below)
sendLog("Hello")
Are are also able to send multiple message by sending a list. (See below)
sendLog(listOf("line1", "line2"))
A warning message is a message that should be used to send messages when something went wrong but it didn't break anything. (See below)
sendWarning("Warning")
As same a normal message you can send a list to. (See below)
sendWarning(listOf("Warning1", "Warning2"))
A errir message should only be send if something went wrong and the plugin won't run without. (See below)
sendError("Error")
And again you can send it as a list
sendError(listOf("Error1", "Error2"))