import logginglogger = logging.getLogger(__name__)
How do I make this part accessible from all files?Is there a way to use it on all files without importing it similar to the environment variable?
import logginglogger = logging.getLogger(__name__)
How do I make this part accessible from all files?Is there a way to use it on all files without importing it similar to the environment variable?