From 18bdfc707a91dc420bca302f24454d3ee6d7b183 Mon Sep 17 00:00:00 2001 From: Fabio Di Fabio Date: Fri, 19 Aug 2022 11:40:00 +0200 Subject: [PATCH] Wording change for the log message Co-authored-by: Adrian Sutton --- besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java b/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java index 3383fc179ed..f86d02be513 100644 --- a/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java +++ b/besu/src/main/java/org/hyperledger/besu/cli/BesuCommand.java @@ -1501,7 +1501,7 @@ private void detectJemalloc() { .ifPresentOrElse( present -> logger.info("Using jemalloc"), () -> - logger.info("jemalloc not found, you could improve memory usage installing it")); + logger.info("jemalloc library not found, memory usage may be reduced by installing it")); } }