From 08241905d9c64a85d2d033260c887c7ab9adfe54 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Mon, 7 Sep 2020 15:01:05 +0100
Subject: [PATCH] containers test: Improve logging

It isn't always obvious which adverb we're using.

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 tests/containers.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/containers.py b/tests/containers.py
index 9e1721e06..533241525 100755
--- a/tests/containers.py
+++ b/tests/containers.py
@@ -180,11 +180,19 @@ class TestContainers(BaseTest):
                     # We don't necessarily want to use versions from
                     # the builddir because they can have dependencies
                     # that are newer than the container's libraries.
+                    logger.info(
+                        'Copying pre-existing %s from %s',
+                        exe, in_containers_dir,
+                    )
                     shutil.copy2(
                         in_containers_dir,
                         os.path.join(cls.pv_dir, 'bin', exe),
                     )
                 else:
+                    logger.info(
+                        'Copying just-built %s from %s/src',
+                        exe, cls.top_builddir,
+                    )
                     shutil.copy2(
                         os.path.join(cls.top_builddir, 'src', exe),
                         os.path.join(cls.pv_dir, 'bin', exe),
-- 
GitLab