Store the Local Database Inside a Server-Specific Subdirectory (#45)

Store the local database inside a server-specific subdirectory
Reviewed-on: https://git.kske.dev/zdm/envoy/pulls/45
Reviewed-by: delvh <leon@kske.dev>
This commit is contained in:
Kai S. K. Engelbart 2020-09-23 16:23:42 +02:00
parent b9e19d69b9
commit 758e52e030
1 changed files with 3 additions and 2 deletions

View File

@ -70,8 +70,9 @@ public final class Startup extends Application {
// Initialize the local database
try {
logger.info("Initializing LocalDB at " + config.getHomeDirectory());
localDB = new LocalDB(config.getHomeDirectory());
var localDBFile = new File(config.getHomeDirectory(), config.getServer());
logger.info("Initializing LocalDB at " + localDBFile);
localDB = new LocalDB(localDBFile);
} catch (IOException | EnvoyException e) {
logger.log(Level.SEVERE, "Could not initialize local database: ", e);
new Alert(AlertType.ERROR, "Could not initialize local database!\n" + e).showAndWait();