-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathlog.js
33 lines (31 loc) · 795 Bytes
/
log.js
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
const meteor_parameters = {
// /:\ ES 6
// return the value OR UNDEFINED
// THIS IS NOT A BOOLEAN
VERBOSE: Meteor && Meteor.settings && Meteor.settings.coverage && Meteor.settings.coverage.verbose
};
const Log = {
COVERAGE_VERBOSE: meteor_parameters.VERBOSE || process.env['COVERAGE_VERBOSE'] === '1' || false,
error: function() {
console.error(...arguments);
},
info: function() {
/* istanbul ignore else */
if (this.COVERAGE_VERBOSE) {
console.log(...arguments);
}
},
time: function() {
/* istanbul ignore else */
if (this.COVERAGE_VERBOSE) {
console.log(...arguments);
}
},
timeEnd: function() {
/* istanbul ignore else */
if (this.COVERAGE_VERBOSE) {
console.log(...arguments);
}
}
};
export default Log;