Browse code

Show more info in the minimal callback for unreachable hosts

Fixes #12621

James Cammarata authored on 2015/10/03 14:41:57
Showing 1 changed files
... ...
@@ -74,7 +74,7 @@ class CallbackModule(CallbackBase):
74 74
         self._display.display("%s | SKIPPED" % (result._host.get_name()), color='cyan')
75 75
 
76 76
     def v2_runner_on_unreachable(self, result):
77
-        self._display.display("%s | UNREACHABLE!" % result._host.get_name(), color='yellow')
77
+        self._display.display("%s | UNREACHABLE! => %s" % (result._host.get_name(), self._dump_results(result._result, indent=4)), color='yellow')
78 78
 
79 79
     def v2_on_file_diff(self, result):
80 80
         if 'diff' in result._result and result._result['diff']: