diff --git a/Library-Documentation.md b/Library-Documentation.md index e21620e..d69cef7 100644 --- a/Library-Documentation.md +++ b/Library-Documentation.md @@ -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.