add debug statements
diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py
index 16b6a2e..5d52c38 100644
--- a/buildkite/bazelci.py
+++ b/buildkite/bazelci.py
@@ -274,12 +274,16 @@
                 upload_bazel_binary()
         if not build_only:
             bep_file = os.path.join(tmpdir, "build_event_json_file.json")
+            print("\nBefore Execute Test\n")
             exit_code = execute_bazel_test(bazel_binary, config.get("test_flags", []),
                                            config.get("test_targets", None), bep_file)
+            print("\nAfter Execute Test\n")
             # Fail the pipeline if there were any flaky tests.
             if has_flaky_tests() and exit_code == 0:
                 exit_code = 1
+            print("\nBefore Upload Test\n")
             upload_test_logs(bep_file, tmpdir)
+            print("\nAfter Upload Test\n")
     finally:
         if tmpdir:
             shutil.rmtree(tmpdir)