This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-02 00:59:02 +02:00

494 B

Table: log

Table containing functions for printing to console / log file.

Functions (3)

info(data)

Logs an informational message.

  • Parameters:
    • data (string)

Exemple Usage:

log.info(data)

warning(data)

Logs a warning message.

  • Parameters:
    • data (string)

Exemple Usage:

log.warning(data)

debug(data)

Logs a debug message.

  • Parameters:
    • data (string)

Exemple Usage:

log.debug(data)