From 8c5398727025bcdb9da933e7d4a8d81822604a65 Mon Sep 17 00:00:00 2001 From: Quim Date: Tue, 12 Feb 2019 16:56:00 +0100 Subject: [PATCH] tracking of processing was in debug instead of info logging --- vulnwhisp/vulnwhisp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vulnwhisp/vulnwhisp.py b/vulnwhisp/vulnwhisp.py index fd7c1aa..edd6e11 100755 --- a/vulnwhisp/vulnwhisp.py +++ b/vulnwhisp/vulnwhisp.py @@ -625,7 +625,7 @@ class vulnWhispererQualys(vulnWhispererBase): for app in self.scans_to_process.iterrows(): counter += 1 r = app[1] - self.logger.debug('Processing {}/{}'.format(counter, len(self.scans_to_process))) + self.logger.info('Processing {}/{}'.format(counter, len(self.scans_to_process))) self.whisper_reports(report_id=r['id'], launched_date=r['launchedDate'], scan_name=r['name'], @@ -884,7 +884,7 @@ class vulnWhispererQualysVuln(vulnWhispererBase): for app in self.scans_to_process.iterrows(): counter += 1 r = app[1] - self.logger.debug('Processing {}/{}'.format(counter, len(self.scans_to_process))) + self.logger.info('Processing {}/{}'.format(counter, len(self.scans_to_process))) self.whisper_reports(report_id=r['id'], launched_date=r['date'], scan_name=r['name'],