diff options
| author | Paul-Christian Volkmer | 2024-02-09 08:19:07 +0100 |
|---|---|---|
| committer | GitHub | 2024-02-09 08:19:07 +0100 |
| commit | d3a4500568cc5f807d4a49e8c803b19eba14796b (patch) | |
| tree | fb37f398fa06e9068bf70febee5a89e2c068afb2 /src/main/java | |
| parent | 5355eee05c205ec3d51deb7a056184e5940c0d8c (diff) | |
| parent | 2e4fee97a87281b2ce850ccfe731d3d6d45ed8a6 (diff) | |
Merge pull request #35 from CCC-MF/issue_33
Deprecate usage of ...SSL_CA_LOCATION config param
Diffstat (limited to 'src/main/java')
| -rw-r--r-- | src/main/java/dev/dnpm/etl/processor/pseudonym/GpasPseudonymGenerator.java | 4 |
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 | |
