From 816db6b626bdc0fbc4b3cdf254002aa5c87e55ea Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 4 Jun 2018 10:10:44 +0100 Subject: [PATCH] Fix up some missing logging names that slipped through the review net. --- volatility/plugins/windows/handles.py | 2 +- volatility/plugins/windows/vaddump.py | 2 +- volatility/plugins/windows/vadinfo.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/volatility/plugins/windows/handles.py b/volatility/plugins/windows/handles.py index 00ca43a43..dd7eeb716 100644 --- a/volatility/plugins/windows/handles.py +++ b/volatility/plugins/windows/handles.py @@ -7,7 +7,7 @@ from volatility.framework import exceptions, renderers from volatility.framework.objects import utility from volatility.framework.renderers import format_hints -vollog = logging.getLogger() +vollog = logging.getLogger(__name__) try: import capstone diff --git a/volatility/plugins/windows/vaddump.py b/volatility/plugins/windows/vaddump.py index 0ea406b8b..e19a083b0 100644 --- a/volatility/plugins/windows/vaddump.py +++ b/volatility/plugins/windows/vaddump.py @@ -6,7 +6,7 @@ import volatility.plugins.windows.vadinfo as vadinfo from volatility.framework import renderers from volatility.framework.objects import utility -vollog = logging.getLogger() +vollog = logging.getLogger(__name__) class VadDump(interfaces_plugins.PluginInterface): diff --git a/volatility/plugins/windows/vadinfo.py b/volatility/plugins/windows/vadinfo.py index 9f50fe557..d35ca6caf 100644 --- a/volatility/plugins/windows/vadinfo.py +++ b/volatility/plugins/windows/vadinfo.py @@ -7,7 +7,7 @@ from volatility.framework.configuration import requirements from volatility.framework.objects import utility from volatility.framework.renderers import format_hints -vollog = logging.getLogger() +vollog = logging.getLogger(__name__) # these are from WinNT.h winnt_protections = {