From 7e374115b622a5d4f71f4c0eb49e8c2a622b3315 Mon Sep 17 00:00:00 2001 From: Charles Daniels Date: Wed, 25 Sep 2019 14:51:58 -0400 Subject: [PATCH] also get the exception --- bem/bem_cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bem/bem_cli.py b/bem/bem_cli.py index c9dedbd..c43c6b9 100644 --- a/bem/bem_cli.py +++ b/bem/bem_cli.py @@ -103,6 +103,7 @@ def bem_cli(): try: bem_engine.execute_command(config, args.command) except Exception as e: + logging.deug(str(e)) bem_util.log_exception(e) if 'executable file not found in $PATH": unknown' in str(e): logging.error("command '{}' not found".format(' '.join(args.command))) -- 2.38.5