Bug 344279 FeedWriter dumps error messages to the console, r=ben

This commit is contained in:
jminta%gmail.com 2006-07-21 18:10:22 +00:00
Родитель aac4ed2044
Коммит f4d96c6ad6
1 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -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";