Where does Fluid.app put the console log?

243 Views Asked by At

I see a template in the user scripts where it points to console.log('foobar'); as an example filename for the console log.

WHERE, exactly can I find this console log? I tried looking in ~/library/application support and had a rummage around. Couldn’t find it. Where can I find the file console.log or foobar ?

1

There are 1 best solutions below

4
On BEST ANSWER

Developer of Fluid here. Use:

Main Menu > Window > Show Error Console

or

⎇⌘C

This will make the standard WebKit Web Inspector appear with the Console displayed.

Messages sent to window.console.log() will appear there (along with other messages from WebKit).