aboutsummaryrefslogtreecommitdiffstats
path: root/DEBUG.md
diff options
context:
space:
mode:
Diffstat (limited to 'DEBUG.md')
-rw-r--r--DEBUG.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/DEBUG.md b/DEBUG.md
index 3d7f025..66bf728 100644
--- a/DEBUG.md
+++ b/DEBUG.md
@@ -42,7 +42,21 @@ Other actions (`disk`, `email`, `remote` or `support`) can be used as
well. I do not recommend using `echo` - use [debug output](#debug-output)
instead.
-Disable or remote that setting to restore regular logging.
+Disable or remove that setting to restore regular logging.
+
+## Verbose output
+
+Specific scripts can generate huge amount of output. These do use a function
+`$LogPrintVerbose`, which is declared, but has no code, intentionally.
+
+If you *really* want that output set the function to be the same as
+`$LogPrint`:
+
+ :set LogPrintVerbose $LogPrint;
+
+To revert that change just run:
+
+ :set LogPrintVerbose;
---
[⬅️ Go back to main README](README.md)