Skip to content

Commit c24dd2b

Browse files
fix: missed a Logger entry
Signed-off-by: Matt Peterson <[email protected]>
1 parent 1916732 commit c24dd2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/com/hedera/block/server/persistence/storage/FileSystemBlockStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public FileSystemBlockStorage(String key, Config config) throws IOException {
8484
public Optional<Long> write(BlockStreamServiceGrpcProto.Block block) {
8585
Long id = block.getId();
8686
String fullPath = resolvePath(id);
87-
Logger.finer("Wrote the file: " + fullPath);
87+
LOGGER.finer("Wrote the file: " + fullPath);
8888

8989
try (FileOutputStream fos = new FileOutputStream(fullPath)) {
9090
block.writeTo(fos);

0 commit comments

Comments
 (0)