From 899771310e10fdaf29f303bdf1d15b91ae10a84f Mon Sep 17 00:00:00 2001 From: "S. Amir Mohammad Najafi" Date: Sun, 20 Oct 2024 10:18:33 +0330 Subject: [PATCH] docs(logger/readme): correct debug key Signed-off-by: S. Amir Mohammad Najafi --- packages/logger/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/logger/README.md b/packages/logger/README.md index 63dfe843..f260e6b0 100644 --- a/packages/logger/README.md +++ b/packages/logger/README.md @@ -53,13 +53,13 @@ greet('Ali'); 1. Open your browser's developer tools. 2. Go to the "Application" or "Storage" tab. 3. Find "Local Storage" and locate your application's domain. -4. Add a new key-value pair: `debug` with the value `1`. +4. Add a new key-value pair: `ALWATR_DEBUG` with the value `1`. 5. Reload the page. Or use the following code snippet in the browser console: ```javascript -window.localStorage?.setItem('debug', '1'); +window.localStorage?.setItem('ALWATR_DEBUG', '1'); ``` > **Note:** Ensure the browser console's log level is set to include "Verbose" or "All" to see debug messages.