Increase verbosity of CTiT Logging test error handling

This commit is contained in:
Marliana Lara 2017-09-06 12:51:52 -04:00
parent ce6aea7437
commit 9329092c32

View File

@ -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 {