зеркало из https://github.com/mozilla/ubiquity.git
Utils: log() now checks if Firebug.Console is enabled.
This commit is contained in:
Родитель
96a4233023
Коммит
d69e87f2c2
|
@ -145,7 +145,8 @@ function log(what) {
|
|||
if (typeof what === "string") logPrefix += " " + args.shift();
|
||||
|
||||
var {Firebug} = Utils.currentChromeWindow;
|
||||
if (Firebug && Firebug.toggleBar(true)) {
|
||||
if (Firebug && Firebug.Console.isEnabled() &&
|
||||
Firebug.toggleBar(true, "console")) {
|
||||
args.unshift(logPrefix);
|
||||
Firebug.Console.logFormatted(args);
|
||||
return;
|
||||
|
|
Загрузка…
Ссылка в новой задаче