Fix for broken show commands
diff --git a/cli/cli/cli.py b/cli/cli/cli.py
index ab656fa..0f807ce 100755
--- a/cli/cli/cli.py
+++ b/cli/cli/cli.py
@@ -281,11 +281,11 @@
 
 class SDNSh():
 
-    debug = True               # general cli debugging
-    debug_backtrace = True     # backtrace on failures
-    description = True         # help debug command descriptions
-    display_rest = True        # display rest call details
-    display_reply_rest = True  # display rest call replies details
+    debug = False               # general cli debugging
+    debug_backtrace = False     # backtrace on failures
+    description = False         # help debug command descriptions
+    display_rest = False        # display rest call details
+    display_reply_rest = False  # display rest call replies details
 
     command_dict = {}
     mode_stack = []