CLI: Fix early logging target

This commit is contained in:
Mike Auty
2021-03-02 11:15:16 +00:00
parent 77e406e408
commit 9deb0c9d8a
+1 -1
View File
@@ -32,7 +32,7 @@ from volatility3.framework.configuration import requirements
# Make sure we log everything
vollog = logging.getLogger()
vollog = logging.getLogger(__name__)
console = logging.StreamHandler()
console.setLevel(logging.WARNING)
formatter = logging.Formatter('%(levelname)-8s %(name)-12s: %(message)s')