Punter Vicky
Punter Vicky

Reputation: 16982

Angular JS Debug Logs

I wrote few logs in my angular js application using the code below. However I am unable to see it displayed either in the console or (chrome -> dev tools) browser console. Where can I see the logs displayed?

    console.info(' Maintanence !! ');
    console.info(' Next Event = '+ next.name);

Upvotes: 0

Views: 42

Answers (1)

Max Ferreira
Max Ferreira

Reputation: 721

use console.log('Maintanence !!');

Upvotes: 1

Related Questions