Logger.debug()

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.debug(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 debug text to the log.
 */
 
 Logger.debug("This is a debug message.");