Updated Library Documentation (markdown)

2025-09-02 13:25:59 +03:00
parent 00651d9961
commit 519aedcb00

@@ -137,10 +137,10 @@ bool PRINT = NO, DISABLE = NO;
} // namespace Helper
```
- `PRINT` specifies whether the log will be printed to the screen. This can be useful for things like verbose logging. The default is `NO` (`false`).
- You can control logging with `DISABLE`. The default is `NO` (`false`). Setting it to true stops logging. No writing to the file.
- `FILE` is the file where the log content will be saved. By default, it's `last_logs.log`. It's created in your current directory.
- `NAME` is the name of the program that prints the log that will appear in the log. By default, it is `main`.
* `PRINT` specifies whether the log will be printed to the screen. This can be useful for things like verbose logging. The default is `NO` (`false`).
* You can control logging with `DISABLE`. The default is `NO` (`false`). Setting it to true stops logging. No writing to the file.
* `FILE` is the file where the log content will be saved. By default, it's `last_logs.log`. It's created in your current directory.
* `NAME` is the name of the program that prints the log that will appear in the log. By default, it is `main`.
You can change these settings directly or use the provided functions.