diff options
-rw-r--r-- | pyfirstaidkit/plugins.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py index 07e4c50..5d100b9 100644 --- a/pyfirstaidkit/plugins.py +++ b/pyfirstaidkit/plugins.py @@ -315,6 +315,8 @@ Just fill the issue_tests list with classes describing the tests and let it run. for i in self.tests: self._reporting.info(level = TASK, origin = self, message = "Investigating '%s'" % (i.name,)) result = result or i.detect() + if i.happened(): + self._reporting.info(level = TASK, origin = self, message = i.str()) if result: self._result=ReturnSuccess |