blob: 6e2e3b7b153eb6dc3b115a1abc9e7362ea91e370 (
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
|
/* 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/>. */
/* */
/**
*
* Utils for logging to the console
* Suppresses logging in non-development environment
*
* @module utils/log
*/
import { prefs } from "./prefs";
/**
* Produces a formatted console log line by imploding args, prefixed by [log]
*
* function input: log(["hello", "world"])
* console output: [log] hello world
*
* @memberof utils/log
* @static
*/
export function log(...args) {
if (prefs.logging) {
console.log(...args);
}
}
|