[#1459][FOLLOWUP] fix(server): Fix the issue of log variable printing (#1648)

### What changes were proposed in this pull request?

Fix the issue of log variable printing.

### Why are the changes needed?

A follow-up PR for: https://github.com/apache/incubator-uniffle/pull/1461.

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Unnecessary.
diff --git a/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java b/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java
index f75cbb6..a411684 100644
--- a/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java
+++ b/server/src/main/java/org/apache/uniffle/server/ShuffleFlushManager.java
@@ -111,7 +111,7 @@
       }
 
       if (reachRetryMax(event)) {
-        LOG.error("The event:{] has been reached to max retry times, it will be dropped.", event);
+        LOG.error("The event:{} has been reached to max retry times, it will be dropped.", event);
         throw new EventDiscardException();
       }