chore(developement/schema_validate): move logging import up

This commit is contained in:
Arthur Deierlein
2024-12-17 22:55:38 +01:00
parent e708a62eef
commit 75a324ddba
+1 -2
View File
@@ -1,13 +1,12 @@
import argparse
import json
import logging
import os
import sys
# TODO: Rather nasty hack, when volatility's actually installed this would be unnecessary
sys.path += ".."
import logging # noqa: E402
console = logging.StreamHandler()
console.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(levelname)-8s %(name)-12s: %(message)s')