Bug 738766 - Marionette's log() now also dump()'s, r=mdas

This commit is contained in:
Jonathan Griffin 2012-03-27 13:48:46 -07:00
parent 697ab20157
commit ac6701a55b

View File

@ -36,6 +36,7 @@ Marionette.prototype = {
},
log: function Marionette__log(msg, level) {
dump("MARIONETTE LOG: " + (level ? level : "INFO") + ": " + msg);
if (this.logObj != null) {
this.logObj.log(msg, level);
}