From a733eb4666a822eb14f2720469d4e864630d85a8 Mon Sep 17 00:00:00 2001 From: Martin van der Boom Date: Fri, 22 Sep 2023 15:29:26 +0200 Subject: [PATCH] #3348 added explanation for @debug in help --- README.md | 2 ++ sp_Blitz.sql | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 9bc8bab6..b2446796 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,8 @@ Advanced tips: In addition to the [parameters common to many of the stored procedures](#parameters-common-to-many-of-the-stored-procedures), here are the ones specific to sp_Blitz: +* @Debug default 0. When 1, we print out messages of what we're doing. When 2, we print the dynamic queries as well + [*Back to top*](#header1) #### Writing sp_Blitz Output to a Table diff --git a/sp_Blitz.sql b/sp_Blitz.sql index 468e6f47..ada1500a 100644 --- a/sp_Blitz.sql +++ b/sp_Blitz.sql @@ -85,6 +85,7 @@ AS @OutputType ''TABLE''=table | ''COUNT''=row with number found | ''MARKDOWN''=bulleted list (including server info, excluding security findings) | ''SCHEMA''=version and field list | ''XML'' =table output as XML | ''NONE'' = none @IgnorePrioritiesBelow 50=ignore priorities below 50 @IgnorePrioritiesAbove 50=ignore priorities above 50 + @Debug 0=silent (Default) | 1=messages per step | 2=outputs dynamic queries For the rest of the parameters, see https://www.BrentOzar.com/blitz/documentation for details. MIT License