Fix typo in previous commit

This commit is contained in:
Aurora Lahtela 2022-09-04 19:23:33 +03:00
parent 30c1a860e3
commit 2c233a0d21
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ public abstract class SQLDB extends AbstractDatabase {
CompletableFuture<Void> result = results[i];
Repository repository = DRIVER_REPOSITORIES.get(i);
result.exceptionally(error -> {
logger.warn("Failed to download " + getType().getName() + " from " + repository.getHost() + ": " + error.getMessage() + ", " + error.getCause());
logger.warn("Failed to download " + getType().getName() + "-driver from " + repository.getHost() + ": " + error.getMessage() + ", " + error.getCause());
return null;
});
}