Skip to content

Commit 65a7fd0

Browse files
committed
error message is now a warning
1 parent 8bccace commit 65a7fd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/BaseClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class BaseClient {
9797
}, Promise.resolve(contextBundle));
9898

9999
if (!isValidFHIR(contextBundle)) {
100-
logger.error(`Extracted bundle is not valid FHIR, the following resources failed validation: ${invalidResourcesFromBundle(contextBundle).join(',')}`);
100+
logger.warn(`Extracted bundle is not valid FHIR, the following resources failed validation: ${invalidResourcesFromBundle(contextBundle).join(',')}`);
101101
}
102102

103103
return { bundle: contextBundle, extractionErrors };

0 commit comments

Comments
 (0)