From 4b3ef9ccfa7be0346fbe14ce9547b8b9390c9d18 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 9 Oct 2024 21:26:15 +0100 Subject: [PATCH] Change an exception to a vollog warning --- volatility3/schemas/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/schemas/__init__.py b/volatility3/schemas/__init__.py index 16a312c07..31b0a01d8 100644 --- a/volatility3/schemas/__init__.py +++ b/volatility3/schemas/__init__.py @@ -85,7 +85,7 @@ def valid( if producer.get("name") == "dwarf2json" and [ int(x) for x in ".".split(producer.get("version")) ] < (0, 8, 0): - raise UserWarning( + vollog.warning( "Dwarf2json < 0.8.0 is known to produce faulty symbols for kernels > 6.0.0" )