diff --git a/odoo_openupgrade_wizard/tools/tools_docker.py b/odoo_openupgrade_wizard/tools/tools_docker.py index 6d9363e..c839eda 100644 --- a/odoo_openupgrade_wizard/tools/tools_docker.py +++ b/odoo_openupgrade_wizard/tools/tools_docker.py @@ -131,6 +131,10 @@ def kill_container(container_name): try: container.stop() container.wait() + logger.debug( + "Container %s status is now '%s'." + % (container.name, container.status) + ) if container.status != "removed": container.remove() container.wait(condition="removed")