11 lines
198 B
Python
11 lines
198 B
Python
import logging
|
|
import src.config.config as config
|
|
import src.logger.logger as log_conf
|
|
|
|
log_conf.setup_logging()
|
|
def test():
|
|
logging.info(f'test logging')
|
|
|
|
|
|
if __name__ == "__main__":
|
|
test() |