Index: /branches/ipp-132_automate_jira_conf_backups/backups/backup_atlassian_applications.py
===================================================================
--- /branches/ipp-132_automate_jira_conf_backups/backups/backup_atlassian_applications.py	(revision 40895)
+++ /branches/ipp-132_automate_jira_conf_backups/backups/backup_atlassian_applications.py	(revision 40896)
@@ -111,5 +111,4 @@
             self._make_destination_subdirs_if_needed(cp)
 
-        print("Paths ok")
         return True
 
@@ -121,5 +120,6 @@
         for sd in subdirs:
             if not path.exists(sd):
-                print("creating dir: ", sd)
+                if self.verbose:
+                    print("creating dir: ", sd)
                 os.makedirs(sd)
 
@@ -257,6 +257,4 @@
         # do this as the dumper user
 
-        print(dump_password)
-
         latest_paths = self.target_paths("latest")
         if not self.target_backup_paths_ok():
@@ -277,5 +275,4 @@
                          , '--databases', 'jiradb', 'confluencedb'
                          ]
-        print(mysqldump_args)
         with open(dump_filepath, "w+") as df:
             mysqldump_process = subprocess.Popen(mysqldump_args, stdout=df, stderr=subprocess.PIPE)
@@ -286,6 +283,4 @@
         if stde is not None:
             decoded_stderr = stde.decode()
-            print(decoded_stderr)
-            print(decoded_stderr.casefold().find('error'.casefold()))
             if decoded_stderr.casefold().find('error'.casefold()) > -1:
                 raise sub_utils.SubprocessError()
