There are 5 levels, that you can use to log messages. From least to most important:Documentation Index
Fetch the complete documentation index at: https://trigger-v3-cli-update-command.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
io.logger.debug()- info for debugging purposesio.logger.info()- informationio.logger.warn()- warningsio.logger.error()- errorsio.logger.log()- essential messages
If you set the
logLevel on the Job or Client so only messages of a certain
level are logged, then io.logger will ignore log messages of lower levels.Parameters
Each of theio.logger methods takes these params:
The log message.
An optional object with additional data to log.
Returns
APromise that resolves when the message has been logged.

