OpenJDK 9's new Unified JVM Logging can filter logs by tags, but the JEP does not provide a list of all available tags. How can I list all available arguments?
In HTML, all the list items in an ordered list are marked with numbers by default instead of bullets. An HTML ordered list starts with the <ol> tag and ends with the </ol> tag. The list items start with the <li> tag and end with </li> tag.
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
The <li> tag defines a list item.
There are three different types of HTML lists: Ordered List or Numbered List (ol) Unordered List or Bulleted List (ul) Description List or Definition List (dl)
java -Xlog:help
prints the argument syntax, including the list of tags available in that particular version, which may change over time.
Note that logging with -Xlog:<tag>
may not print everything related to that tag since it requires the log message to only have that tag. Use -Xlog:<tag>*
instead to include messages containing multiple tags.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With