aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/pal.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/presentation/pal.py')
-rw-r--r--resources/tools/presentation/pal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py
index 73d3b757aa..a6b4d58bcf 100644
--- a/resources/tools/presentation/pal.py
+++ b/resources/tools/presentation/pal.py
@@ -116,10 +116,10 @@ def main():
except (KeyError, ValueError, PresentationError) as err:
logging.info("Finished with an error.")
- logging.critical(str(err))
+ logging.critical(repr(err))
except Exception as err:
logging.info("Finished with an unexpected error.")
- logging.critical(str(err))
+ logging.critical(repr(err))
finally:
if spec is not None:
clean_environment(spec.environment)