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):