Capture/Replay: Print capture and replay exe in verbose mode

When running the test script to capture and replay it is helpful to
know the locations of the executables that are run to make it simpler
to locate them for debugging.

Bug: None
Change-Id: Ia43bd9863e94058515d9023981863ad6c711285e
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2850640
Commit-Queue: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Cody Northrop <cnorthrop@google.com>
diff --git a/src/tests/capture_replay_tests.py b/src/tests/capture_replay_tests.py
index 4f2dc80..129c583 100755
--- a/src/tests/capture_replay_tests.py
+++ b/src/tests/capture_replay_tests.py
@@ -516,7 +516,11 @@
             cmd = ['vpython', 'testing/xvfb.py', test_exe_path]
         else:
             cmd = [test_exe_path]
-        cmd += ['--gtest_filter=%s' % filt, '--angle-per-test-capture-label']
+        filter_string = '--gtest_filter=%s' % filt
+        cmd += [filter_string, '--angle-per-test-capture-label']
+
+        if self.verbose:
+            info("Run capture: '{} {}'".format(test_exe_path, filter_string))
 
         returncode, output = child_processes_manager.RunSubprocess(
             cmd, env, timeout=SUBPROCESS_TIMEOUT)
@@ -575,6 +579,10 @@
         env = os.environ.copy()
         env['ANGLE_CAPTURE_ENABLED'] = '0'
         env['ANGLE_FEATURE_OVERRIDES_ENABLED'] = 'enable_capture_limits'
+
+        if self.verbose:
+            info("Run Replay: {}".format(replay_exe_path))
+
         returncode, output = child_processes_manager.RunSubprocess([replay_exe_path],
                                                                    env,
                                                                    timeout=SUBPROCESS_TIMEOUT)