firebug / consoleexport

ConsoleExport is a Firebug extension that allows exporting logs from the Console panel.
Other
8 stars 10 forks source link

changed consoleExport-0.5b5.xpi so that logging parameters are sent to logging server URL #3

Open babygiraffe opened 11 years ago

babygiraffe commented 11 years ago

consoleListener.js Added var logJSONText = JSON.stringify(object, null); and msg: logJSONText, This sends the logging line with all the parameters in the logging line to the server url. Previously the logging line came with its text only and without and parameters in the text line. Can you please make a new improved version of consoleExporter with these changes? Thanks. Regards, Babygiraffe.

/* See license.txt for terms of usage */

FBL.ns(function() { with (FBL) {

// **** // Constants

const Cc = Components.classes; const Ci = Components.interfaces;

// **** // Module implementation

/**

// **** }});