Console.log with style ---- Link: http://stackoverflow.com/questions/7505623/colors-in-javascript-console
str = JSON.stringify(variable, null, 4)
console.log('%c RESPONSE = ' + str, \
'background: #222; color: #bada55; font-size: medium')
# --------------------------------
console.log('%c Oh my heavens! ', \
'background: #222; color: #bada55; font-size: medium')
# --------------------------------
str = JSON.stringify(response.body, null, 4)
console.log('RESPONSE = ' + str)