tisonkun commented on code in PR #96:
URL: https://github.com/apache/fluss-rust/pull/96#discussion_r2617860579


##########
crates/fluss/src/rpc/server_connection.rs:
##########
@@ -178,8 +177,10 @@ where
                         let header =
                             match ResponseHeader::read_versioned(&mut cursor, 
ApiVersion(0)) {
                                 Ok(header) => header,
-                                Err(e) => {
-                                    warn!(%e, "Cannot read message header, 
ignoring message");
+                                Err(err) => {
+                                    log::warn!(
+                                        "Cannot read message header, ignoring 
message: {err:?}"
+                                    );

Review Comment:
   `err` in kv is not good for text searching. I experienced this when sending 
logs to otel backend ..



-- 
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