mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
21 lines
594 B
Python
21 lines
594 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import division, absolute_import, print_function, unicode_literals
|
|
|
|
|
|
class LazyLogger(object):
|
|
"""`helper.loghandler.getLogger()` is used everywhere.
|
|
This class helps to avoid import errors.
|
|
"""
|
|
|
|
__logger = None
|
|
__logger_name = None
|
|
|
|
def __init__(self, logger_name=None):
|
|
self.__logger_name = logger_name
|
|
|
|
def __getattr__(self, name):
|
|
if self.__logger is None:
|
|
from .loghandler import getLogger
|
|
|
|
self.__logger = getLogger(self.__logger_name)
|
|
return getattr(self.__logger, name)
|