mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 14:11:24 -03:30
Increase verbosity of CTiT Logging test error handling
This commit is contained in:
parent
ce6aea7437
commit
9329092c32
@ -224,7 +224,10 @@ angular.module('Utilities', ['RestServices', 'Utilities'])
|
||||
if (Array.isArray(data[keys[0]])) {
|
||||
msg = data[keys[0]][0];
|
||||
} else {
|
||||
msg = data[keys[0]];
|
||||
msg = "";
|
||||
_.forOwn(data, function(value, key) {
|
||||
msg += `${key} : ${value} `;
|
||||
});
|
||||
}
|
||||
Alert(defaultMsg.hdr, msg);
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user