Merge remote-tracking branch 'upstream/1.10' into main
diff --git a/server/tserver/src/main/java/org/apache/accumulo/tserver/UnloadTabletHandler.java b/server/tserver/src/main/java/org/apache/accumulo/tserver/UnloadTabletHandler.java
index e3978f0..798d7b4 100644
--- a/server/tserver/src/main/java/org/apache/accumulo/tserver/UnloadTabletHandler.java
+++ b/server/tserver/src/main/java/org/apache/accumulo/tserver/UnloadTabletHandler.java
@@ -66,6 +66,7 @@
     synchronized (server.openingTablets) {
       while (server.openingTablets.contains(extent)) {
         try {
+          log.info("Waiting for tablet {} to finish opening before unloading.", extent);
           server.openingTablets.wait();
         } catch (InterruptedException e) {}
       }