Skip to content

Usage

Log Events

Success Example

This will be sent with a green success color

logger.success('')
WEBHOOK EXAMPLE

Warning Example

This will be sent with a yellow warn color

logger.warn('')
WEBHOOK EXAMPLE

Error Example

This will be sent with a red error color

logger.error('')
WEBHOOK EXAMPLE

Normal Example

This will be sent without any color

logger.send('')
WEBHOOK EXAMPLE

Local Example

This will be printed just in the terminal

logger.console('')
WEBHOOK EXAMPLE

Back to top