commit | a2556a507242ef935b57422fed27714b527b30dd | [log] [tgz] |
---|---|---|
author | Thomas Draebing <thomas.draebing@sap.com> | Fri Sep 27 14:13:02 2019 +0200 |
committer | Matthias Sohn <matthias.sohn@sap.com> | Mon Nov 11 17:11:45 2019 -0800 |
tree | 3613fc9d73f8152d2a2a58decd2a0a10352f2e15 | |
parent | 71580190562cbd352f60b83f7f58985943b26651 [diff] |
Add debug log entry at beginning of action Change-Id: I920a5f9f7d090b95350e88e539dd72292b029fee
diff --git a/container/tools/actions/abstract.py b/container/tools/actions/abstract.py index 820908a..70d1694 100644 --- a/container/tools/actions/abstract.py +++ b/container/tools/actions/abstract.py
@@ -32,6 +32,8 @@ def execute(self): if self._is_executed(): + self.log.debug("Executing %s", self.__class__.__name__) + try: return self._execute_action() except Exception: