Skip to content

Commit

Permalink
TEST: Add dependency logging
Browse files Browse the repository at this point in the history
  • Loading branch information
JPercival committed May 14, 2024
1 parent 3fca069 commit 1a32f03
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ public NpmPackageManager(ImplementationGuide sourceIg, String version) {

loadCorePackage();

for (var dep : sourceIg.getDependsOn()) {
logger.error("found dependency: {}, {}, {}", dep.getId(), dep.getUri(), dep.getVersion());
}

int i = 0;
for (ImplementationGuide.ImplementationGuideDependsOnComponent dep : sourceIg.getDependsOn()) {
try {
Expand Down

0 comments on commit 1a32f03

Please sign in to comment.