Skip to content

Commit be05ace

Browse files
committed
Timeliner plugin: Add exception information
1 parent 57de357 commit be05ace

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

volatility3/framework/plugins/timeliner.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,10 @@ def _generator(
199199
),
200200
)
201201
)
202-
except Exception:
202+
except Exception as e:
203203
vollog.log(
204-
logging.INFO, f"Exception occurred running plugin: {plugin_name}"
204+
logging.INFO,
205+
f"Exception occurred running plugin: {plugin_name}: {e}",
205206
)
206207
vollog.log(logging.DEBUG, traceback.format_exc())
207208

0 commit comments

Comments
 (0)