Skip to content

Commit

Permalink
fix: missed a Logger entry
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Jun 25, 2024
1 parent 1916732 commit c24dd2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public FileSystemBlockStorage(String key, Config config) throws IOException {
public Optional<Long> write(BlockStreamServiceGrpcProto.Block block) {
Long id = block.getId();
String fullPath = resolvePath(id);
Logger.finer("Wrote the file: " + fullPath);
LOGGER.finer("Wrote the file: " + fullPath);

try (FileOutputStream fos = new FileOutputStream(fullPath)) {
block.writeTo(fos);
Expand Down

0 comments on commit c24dd2b

Please sign in to comment.