src/Logger/NullLogger.js   A
last analyzed

Size

Lines of Code 8

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
nc 1
dl 0
loc 8
rs 10
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A NullLogger.js ➔ ??? 0 1 1
1
import AbstractLogger from './AbstractLogger'
2
3
export default class NullLogger extends AbstractLogger {
4
    debug() {}
5
    warn() {}
6
    error() {}
7
    info() {}
8
}
9