Reduce the logging level of the Pdbscan automagic.

This commit is contained in:
Mike Auty
2017-08-10 23:58:34 +01:00
parent c336a39695
commit a008686c20
+2 -2
View File
@@ -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):