:docs-tip-of-tree:docs now printing docs start/stop

so we can be more sure about what Gradle is doing when it times out

Bug: 307738543

Test: Treehugger runs busytown/*.sh
Change-Id: I28bf7f8663be44e6e63561a3fca0fe550cb38c05
diff --git a/docs-tip-of-tree/build.gradle b/docs-tip-of-tree/build.gradle
index 805070a..f706c7da 100644
--- a/docs-tip-of-tree/build.gradle
+++ b/docs-tip-of-tree/build.gradle
@@ -425,3 +425,11 @@
     docs(project(":work:work-rxjava3"))
     docs(project(":work:work-testing"))
 }
+afterEvaluate {
+  tasks["docs"].doFirst {
+    println("docs-tip-of-tree:docs starting")
+  }
+  tasks["docs"].doLast {
+    println("docs-tip-of-tree:docs completing")
+  }
+}