All files / src/utils myLogger.js

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21            21x               21x            
import Logger from './Logger.js';
 
/**
 * Instance of Logger with full logging enabled.
 * @type {Logger}
 */
const logger = new Logger({
  name: 'AElf',
  log: true
});
/**
 * Instance of Logger that logs only words.
 * @type {Logger}
 */
const plainLogger = new Logger({
  onlyWords: true,
  log: false
});
 
export { logger, plainLogger };