log4j 2 and reworked loadSettings

* replacing all debug/info syso and all syse with log4j 2 logger
* loadSettings() should be 100% bulletproof
This commit is contained in:
Seil0
2017-09-16 18:22:46 +02:00
parent f001f18c7f
commit 60365aa09d
6 changed files with 255 additions and 122 deletions

12
pom.xml
View File

@ -47,6 +47,18 @@
<artifactId>sqlite-jdbc</artifactId>
<version>3.20.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.9.0</version>
</dependency>
</dependencies>
<build>