Source code for means.util.logs

import logging

[docs]def get_logger(name): logging.basicConfig() logger = logging.getLogger(name) return logger