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.

44 lines
494 B
Markdown
Raw Normal View History

2023-07-02 00:59:02 +02:00
# Table: log
Table containing functions for printing to console / log file.
## Functions (3)
### `info(data)`
Logs an informational message.
- **Parameters:**
- `data` (string)
**Example Usage:**
2023-07-02 00:59:02 +02:00
```lua
log.info(data)
```
### `warning(data)`
Logs a warning message.
- **Parameters:**
- `data` (string)
**Example Usage:**
2023-07-02 00:59:02 +02:00
```lua
log.warning(data)
```
### `debug(data)`
Logs a debug message.
- **Parameters:**
- `data` (string)
**Example Usage:**
2023-07-02 00:59:02 +02:00
```lua
log.debug(data)
```