Grab and display msg from lines starting with 'failed'

Change-Id: I5bf1dd431601187196fa933eec9099acae67c6fb
diff --git a/xos/synchronizers/base/ansible.py b/xos/synchronizers/base/ansible.py
index dccffec..134c1c3 100644
--- a/xos/synchronizers/base/ansible.py
+++ b/xos/synchronizers/base/ansible.py
@@ -147,8 +147,10 @@
     except ValueError,e:
         all_fatal = [e.message] + re.findall(r'^msg: (.*)',msg,re.MULTILINE)
         all_fatal2 = re.findall(r'^ERROR: (.*)',msg,re.MULTILINE)
+        all_fatal3 = re.findall(r'^failed:.*"msg": "(.*)"',msg,re.MULTILINE)
 
         all_fatal.extend(all_fatal2)
+        all_fatal.extend(all_fatal3)
         try:
             error = ' // '.join(all_fatal)
         except: