Skip to content

Commit

Permalink
fix log warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jetoile committed Aug 20, 2019
1 parent de76cf2 commit a0d3364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Graph<String, DefaultEdge> generateGraph(Map<String, Bootstrap> commands) {
graph.addEdge(key, dependency);
} catch (IllegalArgumentException e) {
//ignore it : if a dependency is declared in metadata but is not present on runtime
LOGGER.warn("{} is not declared into the component's dependencies {}", key, dependency);
LOGGER.warn("{} is not declared into the component's dependencies {}", dependency, key);
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ private static Graph<String, DefaultEdge> generateGraph(Map<String, ComponentMet
graph.addEdge(key, dependency);
} catch (IllegalArgumentException e) {
//ignore it : if a dependency is declared in metadata but is not present on runtime
LOGGER.warn("{} is not declared into the component's dependencies {}", key, dependency);
LOGGER.warn("{} is not declared into the component's dependencies {}", dependency, key);
}
});
}
Expand Down

0 comments on commit a0d3364

Please sign in to comment.