This commit is contained in:
NoryiE
2025-10-29 16:56:08 +00:00
parent 9a5b46138e
commit 00a9ce5632
26 changed files with 812 additions and 77 deletions

View File

@@ -25,7 +25,7 @@ Sets if the logger should log
Sends a debug message to the logger.
### Usage
```lua
```lua run
Log.debug("This is a debug message")
```
@@ -34,7 +34,7 @@ Log.debug("This is a debug message")
Sends an info message to the logger.
### Usage
```lua
```lua run
Log.info("This is an info message")
```
@@ -43,7 +43,7 @@ Log.info("This is an info message")
Sends a warning message to the logger.
### Usage
```lua
```lua run
Log.warn("This is a warning message")
```
@@ -52,6 +52,6 @@ Log.warn("This is a warning message")
Sends an error message to the logger.
### Usage
```lua
```lua run
Log.error("This is an error message")
```