Search code examples
macosfluid-mac-app-engine

Where does Fluid.app put the console log?


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 ?


Solution

  • 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).