other: added java version in app's starting logs

This commit is contained in:
Oleg Agafonov 2024-06-12 06:31:09 +04:00
parent a8215efe1a
commit e2b1d980b6
3 changed files with 6 additions and 3 deletions

View file

@ -207,7 +207,8 @@ public class ConsoleFrame extends javax.swing.JFrame implements MageClient {
* @param args the command line arguments
*/
public static void main(String[] args) {
logger.info("Starting MAGE server console version " + version);
logger.info("Starting MAGE ADMIN version " + version);
logger.info("Java version: " + System.getProperty("java.version"));
logger.info("Logging level: " + logger.getEffectiveLevel());
java.awt.EventQueue.invokeLater(() -> {