Skip to content

Commit

Permalink
use name of app in log
Browse files Browse the repository at this point in the history
  • Loading branch information
rgildein authored Apr 10, 2024
1 parent 8abfb4f commit 2794690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cou/steps/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async def _populate(cls, model: juju_utils.Model) -> list[OpenStackApplication]:
for name, app in juju_applications.items():
if os_app := AppFactory.create(app):
apps.add(os_app)
logger.info("found OpenStack application:\n%s", os_app)
logger.info("found %s application:\n%s", name, os_app)

# mypy complains that apps can have None, but we already removed.
apps_to_upgrade_in_order = {
Expand Down

0 comments on commit 2794690

Please sign in to comment.