Skip to content

Commit

Permalink
Ensure unmet depends are logged as warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
james-willdooit authored and richard-willdooit committed Dec 24, 2024
1 parent 6159aad commit 6b4bd59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odoo/modules/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def add_modules(self, cr, module_list, force=None):

for package in later:
unmet_deps = [p for p in dependencies[package] if p not in self]
_logger.info('module %s: Unmet dependencies: %s', package, ', '.join(unmet_deps))
_logger.warning('module %s: Unmet dependencies: %s', package, ', '.join(unmet_deps))

return len(self) - len_graph

Expand Down

0 comments on commit 6b4bd59

Please sign in to comment.