From 3361d77d17ece7f10b242df82ba7487a73d0b732 Mon Sep 17 00:00:00 2001 From: superponible Date: Sat, 3 Aug 2019 17:30:46 -0500 Subject: [PATCH] remove redundant log message --- volatility/framework/plugins/windows/registry/printkey.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/volatility/framework/plugins/windows/registry/printkey.py b/volatility/framework/plugins/windows/registry/printkey.py index 3674244e4..d193407ae 100644 --- a/volatility/framework/plugins/windows/registry/printkey.py +++ b/volatility/framework/plugins/windows/registry/printkey.py @@ -118,8 +118,6 @@ class PrintKey(interfaces.plugins.PluginInterface): sub_node_name = sub_node.get_name() except exceptions.InvalidAddressException as excp: vollog.debug(excp) - vollog.log(constants.LOGLEVEL_VVV, - "Couldn't get subnode name at {}, not recursing".format(hex(sub_node.vol.offset))) continue yield from self.hive_walker(hive, node_path + [sub_node], key_path + "\\" + sub_node_name)