build.utils.misc.logging   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
import logging
2
3
logging.basicConfig(
4
    format=f"%(asctime)s - [%(levelname)s] - %(name)s - (%(filename)s).%(funcName)s(%(lineno)d) - %(message)s",
5
    level=logging.INFO)
6
logging.getLogger(__name__)
7