If you need to group console log's together you can use console.group like so:

console.group()
for(var i=0; i < 5; i++){ console.log('these will be grouped') }
console.groupEnd()

A picture of the Chrome dev console with groups delimiting the logs