From 8b909db0a2cc7739a207b9f4b31b7d5d964b45a8 Mon Sep 17 00:00:00 2001 From: Brad Schoening Date: Sun, 9 Feb 2025 21:47:31 -0500 Subject: [PATCH] Added detail on how to enable trace in JShell --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5297e83..9b5d23f 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,17 @@ Using default domain [0-9] pt;ciphertext;plaintext ``` +to enable TRACE level messages: +```jshell +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.apache.logging.log4j.core.config.Configurator; +import org.apache.logging.log4j.Level; +Logger logger = LogManager.getRootLogger(); +Configurator.setRootLevel(Level.TRACE); + +``` + ## Custom alphabets Custom alphabets up to 256 characters are supported. To use an alphabet consisting of the uppercase letters A-F (radix=6), we can continue