Log version information.

This commit is contained in:
Michael Lipp 2023-08-01 12:54:04 +02:00
parent 7a3ae1d381
commit d208917ab7

View file

@ -605,6 +605,9 @@ public class Runner extends Component {
public static void main(String[] args) { public static void main(String[] args) {
// The Runner is the root component // The Runner is the root component
try { try {
Logger.getLogger(Runner.class.getName())
.fine(() -> "Version: "
+ Runner.class.getPackage().getImplementationVersion());
CommandLineParser parser = new DefaultParser(); CommandLineParser parser = new DefaultParser();
// parse the command line arguments // parse the command line arguments
final Options options = new Options(); final Options options = new Options();