From a008686c203321b30b46aff1a27d2d2c2f5225d2 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 10 Aug 2017 23:58:34 +0100 Subject: [PATCH] Reduce the logging level of the Pdbscan automagic. --- volatility/framework/automagic/pdbscan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volatility/framework/automagic/pdbscan.py b/volatility/framework/automagic/pdbscan.py index aa7d77f23..f54c0bde0 100644 --- a/volatility/framework/automagic/pdbscan.py +++ b/volatility/framework/automagic/pdbscan.py @@ -296,9 +296,9 @@ class KernelPDBScanner(interfaces.automagic.AutomagicInterface): # We don't care if we're mapping an address to 0, it's not what we're looking for pass if not valid_kernels: - vollog.warning("No suitable kernel found for layer: {}".format(virtual_layer_name)) + vollog.info("No suitable kernel found for layer: {}".format(virtual_layer_name)) if not valid_kernels: - vollog.warning("No suitable kernels found during pdbscan") + vollog.info("No suitable kernels found during pdbscan") return valid_kernels def __call__(self, context, config_path, requirement, progress_callback = None):