From 519aedcb004bbfed15c3d4edd3f6bf650c3d6f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ya=C4=9F=C4=B1z=20Zengin?= Date: Tue, 2 Sep 2025 13:25:59 +0300 Subject: [PATCH] Updated Library Documentation (markdown) --- Library-Documentation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.