where is Application.ExternalCall(“console.log”, msg) output?

I used console.log in my code, but when I run this, I don’t know how to find the output log.

I tried to open “View → developer → JavaScript Console”, but can’t see the debug log. So where is the log?

    if (Application.isWebPlayer)
        Application.ExternalCall("console.log", msg);

Run your application and open the web browser’s console:

Firefox: Tools > Web Developer > Web Console (Ctrl + Shift + K)

Chrome: Tools > Javescript Console (Ctrl + Shift + J)