From 500d99122ad8095cdf6dba5c3c43806fecdf7a27 Mon Sep 17 00:00:00 2001 From: Hauke Hund Date: Mon, 20 Jan 2025 17:39:00 +0100 Subject: [PATCH] typo fix --- .../dev/dsf/bpe/spring/config/PropertiesConfig.java | 10 +++++----- .../dev/dsf/fhir/spring/config/PropertiesConfig.java | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dsf-bpe/dsf-bpe-server/src/main/java/dev/dsf/bpe/spring/config/PropertiesConfig.java b/dsf-bpe/dsf-bpe-server/src/main/java/dev/dsf/bpe/spring/config/PropertiesConfig.java index 789793c74..7be0cfd35 100644 --- a/dsf-bpe/dsf-bpe-server/src/main/java/dev/dsf/bpe/spring/config/PropertiesConfig.java +++ b/dsf-bpe/dsf-bpe-server/src/main/java/dev/dsf/bpe/spring/config/PropertiesConfig.java @@ -245,23 +245,23 @@ public class PropertiesConfig implements InitializingBean @Value("${dev.dsf.bpe.debug.log.message.onActivityEnd:false}") private boolean debugLogMessageOnActivityEnd; - @Documentation(description = "To enable logging of bpmn variables for every bpmn activity start or end, when logging of these events is enabled, set to `true`", recommendation = "This debug function should only be activated during process plugin development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of bpmn variables for every bpmn activity start or end, when logging of these events is enabled, set to `true`", recommendation = "This debug function should only be activated during process plugin development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.bpe.debug.log.message.variables:false}") private boolean debugLogMessageVariables; - @Documentation(description = "To enable logging of local bpmn variables for every bpmn activity start or end, when logging of these events is enabled, set to `true`", recommendation = "This debug function should only be activated during process plugin development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of local bpmn variables for every bpmn activity start or end, when logging of these events is enabled, set to `true`", recommendation = "This debug function should only be activated during process plugin development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.bpe.debug.log.message.variablesLocal:false}") private boolean debugLogMessageVariablesLocal; - @Documentation(description = "To enable logging of webservices requests set to `true`", recommendation = "This debug function should only be activated during development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of webservices requests set to `true`", recommendation = "This debug function should only be activated during development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.bpe.debug.log.message.webserviceRequest:false}") private boolean debugLogMessageWebserviceRequest; - @Documentation(description = "To enable logging of DB queries set to `true`", recommendation = "This debug function should only be activated during development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of DB queries set to `true`", recommendation = "This debug function should only be activated during development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.bpe.debug.log.message.dbStatement:false}") private boolean debugLogMessageDbStatement; - @Documentation(description = "To enable logging of the currently requesting user set to `true`", recommendation = "This debug function should only be activated during development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of the currently requesting user set to `true`", recommendation = "This debug function should only be activated during development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.bpe.debug.log.message.currentUser:false}") private boolean debugLogMessageCurrentUser; diff --git a/dsf-fhir/dsf-fhir-server/src/main/java/dev/dsf/fhir/spring/config/PropertiesConfig.java b/dsf-fhir/dsf-fhir-server/src/main/java/dev/dsf/fhir/spring/config/PropertiesConfig.java index 938ab55f2..ceb8b8bbd 100644 --- a/dsf-fhir/dsf-fhir-server/src/main/java/dev/dsf/fhir/spring/config/PropertiesConfig.java +++ b/dsf-fhir/dsf-fhir-server/src/main/java/dev/dsf/fhir/spring/config/PropertiesConfig.java @@ -105,15 +105,15 @@ public class PropertiesConfig implements InitializingBean @Value("${dev.dsf.fhir.server.static.resource.cache:true}") private boolean staticResourceCacheEnabled; - @Documentation(description = "To enable logging of webservices requests set to `true`", recommendation = "This debug function should only be activated during development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of webservices requests set to `true`", recommendation = "This debug function should only be activated during development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.fhir.debug.log.message.webserviceRequest:false}") private boolean debugLogMessageWebserviceRequest; - @Documentation(description = "To enable logging of DB queries set to `true`", recommendation = "This debug function should only be activated during development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of DB queries set to `true`", recommendation = "This debug function should only be activated during development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.fhir.debug.log.message.dbStatement:false}") private boolean debugLogMessageDbStatement; - @Documentation(description = "To enable logging of the currently requesting user set to `true`", recommendation = "This debug function should only be activated during development; WARNNING: Confidential information may be leaked via the debug log!") + @Documentation(description = "To enable logging of the currently requesting user set to `true`", recommendation = "This debug function should only be activated during development; WARNING: Confidential information may be leaked via the debug log!") @Value("${dev.dsf.fhir.debug.log.message.currentUser:false}") private boolean debugLogMessageCurrentUser;