зеркало из https://github.com/mozilla/pjs.git
Bug 344279 FeedWriter dumps error messages to the console, r=ben
This commit is contained in:
Родитель
aac4ed2044
Коммит
f4d96c6ad6
|
@ -40,7 +40,19 @@ const Ci = Components.interfaces;
|
|||
const Cr = Components.results;
|
||||
|
||||
function LOG(str) {
|
||||
dump("*** " + str + "\n");
|
||||
var prefB =
|
||||
Cc["@mozilla.org/preferences-service;1"].
|
||||
getService(Ci.nsIPrefBranch);
|
||||
|
||||
var shouldLog = false;
|
||||
try {
|
||||
shouldLog = prefB.getBoolPref("feeds.log");
|
||||
}
|
||||
catch (ex) {
|
||||
}
|
||||
|
||||
if (shouldLog)
|
||||
dump("*** Feeds: " + str + "\n");
|
||||
}
|
||||
|
||||
const HTML_NS = "http://www.w3.org/1999/xhtml";
|
||||
|
|
Загрузка…
Ссылка в новой задаче