Search code examples
firebug

Where can I find the auto export output?


enter image description hereI have a script which runs infinitely and outputs some information from Firebug. I would like Firebug to append this info to the log. I am using auto export but I couldn't find where auto export saves script output.

So, where can I find auto export output log?


Solution

  • Obviously you are using the Firebug extension ConsoleExport.

    The Auto Export option there sends the data to a server URL, which can be specified with the preference extensions.firebug.consoleexport.serverURL (can be changed via about:config). The data is sent in XML format.

    A detailed description of how to set up the auto-export and what data is sent can be found at the blog of Jan 'Honza' Odvarko.

    Note that there is currently no option to save the data on the local file system, though there is a feature request for that, which got already implemented. So, with the next release there will be a preference extensions.firebug.consoleexport.logFilePath allowing you to specify a file path, to which the data is exported.