Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hhund committed Jan 20, 2025
1 parent c3abb4b commit 500d991
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 500d991

Please # to comment.