mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Use __name__ for all logger names
This commit is contained in:
parent
6c5ac6292d
commit
0ba319e700
5 changed files with 5 additions and 5 deletions
|
@ -22,7 +22,7 @@ from helper import LazyLogger # noqa: F402
|
|||
|
||||
#################################################################################################
|
||||
|
||||
LOG = LazyLogger("context")
|
||||
LOG = LazyLogger(__name__)
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ from helper import LazyLogger # noqa: F402
|
|||
|
||||
#################################################################################################
|
||||
|
||||
LOG = LazyLogger("context_play")
|
||||
LOG = LazyLogger(__name__)
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ from helper import LazyLogger # noqa: F402
|
|||
|
||||
#################################################################################################
|
||||
|
||||
LOG = LazyLogger("default")
|
||||
LOG = LazyLogger(__name__)
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
@ -16,6 +16,6 @@ from .context import Context
|
|||
|
||||
#################################################################################################
|
||||
|
||||
LOG = LazyLogger("entrypoint")
|
||||
LOG = LazyLogger(__name__)
|
||||
|
||||
#################################################################################################
|
||||
|
|
|
@ -24,7 +24,7 @@ from helper import LazyLogger # noqa: F402
|
|||
|
||||
#################################################################################################
|
||||
|
||||
LOG = LazyLogger("service")
|
||||
LOG = LazyLogger(__name__)
|
||||
DELAY = int(settings('startupDelay') if settings('SyncInstallRunDone.bool') else 4 or 0)
|
||||
|
||||
#################################################################################################
|
||||
|
|
Loading…
Reference in a new issue