You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by zh...@apache.org on 2022/07/06 02:22:04 UTC

[incubator-uniffle] branch master updated: Fix the log of incorrectly bound class (#35)

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

zhifgli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new cda31ec  Fix the log of incorrectly bound class (#35)
cda31ec is described below

commit cda31ecf073611adb2df4ced34025922cb5e6f71
Author: Zhen Wang <64...@qq.com>
AuthorDate: Wed Jul 6 10:22:00 2022 +0800

    Fix the log of incorrectly bound class (#35)
---
 .../java/org/apache/uniffle/storage/handler/impl/LocalFileReader.java   | 2 +-
 .../apache/uniffle/storage/handler/impl/MemoryClientReadHandler.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/storage/src/main/java/org/apache/uniffle/storage/handler/impl/LocalFileReader.java b/storage/src/main/java/org/apache/uniffle/storage/handler/impl/LocalFileReader.java
index b72987d..6b9c228 100644
--- a/storage/src/main/java/org/apache/uniffle/storage/handler/impl/LocalFileReader.java
+++ b/storage/src/main/java/org/apache/uniffle/storage/handler/impl/LocalFileReader.java
@@ -30,7 +30,7 @@ import org.apache.uniffle.storage.api.FileReader;
 
 public class LocalFileReader implements FileReader, Closeable {
 
-  private static final Logger LOG = LoggerFactory.getLogger(HdfsFileReader.class);
+  private static final Logger LOG = LoggerFactory.getLogger(LocalFileReader.class);
   private String path;
   private DataInputStream dataInputStream;
 
diff --git a/storage/src/main/java/org/apache/uniffle/storage/handler/impl/MemoryClientReadHandler.java b/storage/src/main/java/org/apache/uniffle/storage/handler/impl/MemoryClientReadHandler.java
index a179aa2..5f0db19 100644
--- a/storage/src/main/java/org/apache/uniffle/storage/handler/impl/MemoryClientReadHandler.java
+++ b/storage/src/main/java/org/apache/uniffle/storage/handler/impl/MemoryClientReadHandler.java
@@ -32,7 +32,7 @@ import org.apache.uniffle.common.util.Constants;
 
 public class MemoryClientReadHandler extends AbstractClientReadHandler {
 
-  private static final Logger LOG = LoggerFactory.getLogger(MemoryQuorumClientReadHandler.class);
+  private static final Logger LOG = LoggerFactory.getLogger(MemoryClientReadHandler.class);
   private long lastBlockId = Constants.INVALID_BLOCK_ID;
   private ShuffleServerClient shuffleServerClient;