Browse Source

debug

pull/1507/head
Chris Lu 4 years ago
parent
commit
5080bc1d69
  1. 2
      other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java
  2. 2
      other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java

2
other/java/client/src/main/java/seaweedfs/client/FileChunkManifest.java

@ -59,7 +59,7 @@ public class FileChunkManifest {
.getBlockingStub().lookupVolume(lookupRequest.build());
locations = lookupResponse.getLocationsMapMap().get(vid);
filerGrpcClient.vidLocations.put(vid, locations);
LOG.warn("fetchChunk vid:{} locations:{}", vid, locations);
LOG.debug("fetchChunk vid:{} locations:{}", vid, locations);
}
SeaweedRead.ChunkView chunkView = new SeaweedRead.ChunkView(

2
other/java/client/src/main/java/seaweedfs/client/SeaweedRead.java

@ -108,6 +108,8 @@ public class SeaweedRead {
}
}
LOG.debug("doFetchFullChunkData fid:{} chunkData.length:{}", chunkView.fileId, data.length);
return data;
}

Loading…
Cancel
Save