Logger.warning()
Overview
On Android, sends a message to the Android system logger.
On Windows, the log file is stored on the device in the %programdata%\Wavelink\Velocity folder.
Format
Logger.warning(message);
Parameter | Description | Type | Required |
---|---|---|---|
message | The message to send to the logger. For example: “Incorrect value scanned.” | String | Required |
Example
Copy
/* Send the following warning text to the log.
*/
Logger.warning("This is a warning message.");