summaryrefslogtreecommitdiff
path: root/src/main/java/dev
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-02-09 08:15:01 +0100
committerPaul-Christian Volkmer2024-02-09 08:15:01 +0100
commit2e4fee97a87281b2ce850ccfe731d3d6d45ed8a6 (patch)
treefb37f398fa06e9068bf70febee5a89e2c068afb2 /src/main/java/dev
parent5355eee05c205ec3d51deb7a056184e5940c0d8c (diff)
feat: Deprecate usage of ...SSL_CA_LOCATION config param
Diffstat (limited to 'src/main/java/dev')
-rw-r--r--src/main/java/dev/dnpm/etl/processor/pseudonym/GpasPseudonymGenerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/dev/dnpm/etl/processor/pseudonym/GpasPseudonymGenerator.java b/src/main/java/dev/dnpm/etl/processor/pseudonym/GpasPseudonymGenerator.java
index 07f16c5..62e702f 100644
--- a/src/main/java/dev/dnpm/etl/processor/pseudonym/GpasPseudonymGenerator.java
+++ b/src/main/java/dev/dnpm/etl/processor/pseudonym/GpasPseudonymGenerator.java
@@ -1,7 +1,7 @@
/*
* This file is part of ETL-Processor
*
- * Copyright (c) 2023 Comprehensive Cancer Center Mainfranken, Datenintegrationszentrum Philipps-Universität Marburg and Contributors
+ * Copyright (c) 2024 Comprehensive Cancer Center Mainfranken, Datenintegrationszentrum Philipps-Universität Marburg and Contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
@@ -91,7 +91,7 @@ public class GpasPseudonymGenerator implements Generator {
try {
if (StringUtils.isNotBlank(gpasCfg.getSslCaLocation())) {
customSslContext = getSslContext(gpasCfg.getSslCaLocation());
- log.debug(String.format("%s has been initialized with SSL certificate %s",
+ log.warn(String.format("%s has been initialized with SSL certificate %s. This is deprecated in favor of including Root CA.",
this.getClass().getName(), gpasCfg.getSslCaLocation()));
}
} catch (IOException | KeyManagementException | KeyStoreException | CertificateException |