Protractor - count elements in repeater and print it
If I understand your problem correctly, you actually want to print the count and not the entire content, right?
element.all(by.repeater('app in userApps')).count().then(function(count) {
console.log(count);
});