From f8322c0bfaa1054875cf06e3e5a97b3592301468 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Fri, 7 May 2021 10:45:05 +0100 Subject: [PATCH] Print stdin output --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index 58db925..4688f17 100644 --- a/src/main.py +++ b/src/main.py @@ -24,6 +24,7 @@ def main(args, path: Path, log: Log): else: log.debug("reading from stdin") borg_output = " ".join(stdin.readlines()) + log.debug(f"stdin output: {borg_output}") if args.label is None: log.error("No label supplied") raise Exception("No label supplied")