Use __name__ for all logger names

This commit is contained in:
Odd Stråbø 2020-04-19 06:13:25 +02:00
commit 0ba319e700
5 changed files with 5 additions and 5 deletions

View file

@ -16,6 +16,6 @@ from .context import Context
#################################################################################################
LOG = LazyLogger("entrypoint")
LOG = LazyLogger(__name__)
#################################################################################################