Skip to content

Commit

Permalink
Added detail on how to enable trace in JShell
Browse files Browse the repository at this point in the history
  • Loading branch information
bschoening committed Feb 10, 2025
1 parent a9c3b61 commit 8b909db
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8b909db

Please sign in to comment.