We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c9da2 commit 29346ecCopy full SHA for 29346ec
common/components/protocols.js
@@ -239,12 +239,12 @@ Liberator.prototype = {
239
text = convert(text);
240
241
var stream = Cc["@mozilla.org/network/file-output-stream;1"].createInstance(Ci.nsIFileOutputStream);
242
- Cu.reportError(temp.leafName);
+ Services.console.logStringMessage("create:" + temp.leafName);
243
stream.init(temp, 0x2 | 0x8 | 0x20, 0644, 0);
244
stream.write(text, text.length);
245
stream.close();
246
temp.lastModifiedTime = lastModifiedTime;
247
- } else { Cu.reportError("use cache:" + uri.spec); }
+ } else { Services.console.logStringMessage("use cache:" + uri.spec); }
248
return ioService.newChannelFromURI(ioService.newFileURI(temp));
249
} catch (ex) { Cu.reportError(ex); }
250
}
0 commit comments