This is an automated email from the ASF dual-hosted git repository.

ddanielr pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new 9e8264f4e4 Add tableId into the log message on failure (#5931)
9e8264f4e4 is described below

commit 9e8264f4e42fc1f30b0d6f9b9cea5ec0746e2d37
Author: Daniel Roberts <[email protected]>
AuthorDate: Thu Sep 25 13:07:48 2025 -0400

    Add tableId into the log message on failure (#5931)
    
    Adds the tableId to the error message when table state transition fails
---
 .../src/main/java/org/apache/accumulo/server/tables/TableManager.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/base/src/main/java/org/apache/accumulo/server/tables/TableManager.java 
b/server/base/src/main/java/org/apache/accumulo/server/tables/TableManager.java
index 29df98fc25..56a41a8bfd 100644
--- 
a/server/base/src/main/java/org/apache/accumulo/server/tables/TableManager.java
+++ 
b/server/base/src/main/java/org/apache/accumulo/server/tables/TableManager.java
@@ -177,7 +177,7 @@ public class TableManager {
         return newState.name().getBytes(UTF_8);
       });
     } catch (Exception e) {
-      log.error("FATAL Failed to transition table to state {}", newState);
+      log.error("FATAL Failed to transition table {} to state {}", tableId, 
newState);
       throw new RuntimeException(e);
     }
   }

Reply via email to