blob: 585633486dcfc40e1a5729b0b833d70478c58fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
/* globals buildSettings */
/* eslint-disable no-console */
"use strict";
this.log = (function () {
const exports = {};
const logLevel = "warn";
const levels = ["debug", "info", "warn", "error"];
const shouldLog = {};
{
let startLogging = false;
for (const level of levels) {
if (logLevel === level) {
startLogging = true;
}
if (startLogging) {
shouldLog[level] = true;
}
}
}
function stub() {}
exports.debug = exports.info = exports.warn = exports.error = stub;
if (shouldLog.debug) {
exports.debug = console.debug;
}
if (shouldLog.info) {
exports.info = console.info;
}
if (shouldLog.warn) {
exports.warn = console.warn;
}
if (shouldLog.error) {
exports.error = console.error;
}
return exports;
})();
null;
|