log

Logging and printing in console

Overview:

Functions:

API Reference

info()

Logs an informational message to the console.

log.info("Script loaded")

Parameters:

  • message (String) Message to log.


warn()

Logs a warning message.

log.warn("This might cause issues")

Parameters:

  • message (String)


error()

Logs an error message.

Parameters:

  • message (String)

Last updated

Was this helpful?