summaryrefslogtreecommitdiff
path: root/subplot/summain.py
diff options
context:
space:
mode:
Diffstat (limited to 'subplot/summain.py')
-rw-r--r--subplot/summain.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/subplot/summain.py b/subplot/summain.py
index 3ea6188..98eecf2 100644
--- a/subplot/summain.py
+++ b/subplot/summain.py
@@ -1,3 +1,4 @@
+import logging
import os
@@ -33,4 +34,7 @@ def output_matches_file(ctx, filename=None):
actual = runcmd_get_stdout(ctx)
expected = get_file(filename).decode("UTF-8")
+ logging.debug("output_matches:")
+ logging.debug(f" actual: {actual!r}")
+ logging.debug(f" expect: {expected!r}")
assert_eq(actual, expected)