Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
import org.hl7.fhir.r4.model.Resource;

/**
* Logs data to the <code>log/bpe-data.log</code> file if enabled via environment variable
* (<code>DEV_DSF_LOG_DATA: true</code>) or property (<code>dev.dsf.log.data=true</code>)
* Logs data to the <code>dsf-data-logger</code> if enabled via the environment variables
* <code>DEV_DSF_LOG_DATA_FILE_ENABLED: true</code>, <code>DEV_DSF_LOG_DATA_CONSOLE_OUT_ENABLED: true</code> or
* <code>DEV_DSF_LOG_DATA_CONSOLE_ERR_ENABLED: true</code> (properties: <code>dev.dsf.log.data.file.enabled=true</code>,
* <code>dev.dsf.log.data.console.out.enabled=true</code> or <code>dev.dsf.log.data.console.err.enabled=true</code>)
*/
public interface DataLogger
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ public class PropertiesConfig extends AbstractCertificateConfig implements Initi
@Value("${dev.dsf.bpe.fhir.client.connections.config.default.enable.debug.logging:false}")
private boolean fhirClientConnectionsConfigDefaultEnableDebugLogging;

@Documentation(description = "FHIR server connections YAML: Default value for properties `oidc-auth.verify-authorized-party`", recommendation = "To disable verification of the authorized party (aud) claim by default set to `false`")
@Value("${dev.dsf.bpe.fhir.client.connections.config.default.enable.debug.logging:true}")
@Documentation(description = "FHIR server connections YAML: Default value for property `oidc-auth.verify-authorized-party`", recommendation = "To disable verification of the authorized party (aud) claim by default set to `false`")
@Value("${dev.dsf.bpe.fhir.client.connections.config.default.oidc.verify.authorized.party:true}")
private boolean fhirClientConnectionsConfigDefaultOidcVerifyAuthorizedParty;

@Documentation(description = "FHIR server connections YAML: Default value for properties `connect-timeout` and `oidc-auth.connect-timeout`")
Expand Down
Loading