7 lines
107 B
Python
7 lines
107 B
Python
import logging
|
|
|
|
|
|
class Logger:
|
|
def __init__(self, name):
|
|
self.logger = logging.getLogger(name)
|