platinumhamburg commented on code in PR #2145:
URL: https://github.com/apache/fluss/pull/2145#discussion_r2609802090


##########
fluss-server/src/main/java/org/apache/fluss/server/coordinator/statemachine/ReplicaStateMachine.java:
##########
@@ -376,12 +380,16 @@ private void logInvalidTransition(
     }
 
     private void logFailedSateChange(
-            TableBucketReplica replica, ReplicaState currState, ReplicaState 
targetState) {
+            TableBucketReplica replica,
+            ReplicaState currState,
+            ReplicaState targetState,
+            Throwable reason) {
         LOG.error(
                 "Fail to change state for table bucket replica {} from {} to 
{}.",
                 stringifyReplica(replica),
                 currState,
-                targetState);
+                targetState,
+                reason);

Review Comment:
   I'v updated this PR.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to