diff options
Diffstat (limited to 'DEBUG.md')
-rw-r--r-- | DEBUG.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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) |