Update logger names
This commit is contained in:
@@ -26,7 +26,7 @@ from mautrix_telegram.util import format_duration
|
|||||||
|
|
||||||
|
|
||||||
class AuthAPI(abc.ABC):
|
class AuthAPI(abc.ABC):
|
||||||
log = logging.getLogger("mau.public.auth")
|
log = logging.getLogger("mau.web.auth")
|
||||||
|
|
||||||
def __init__(self, loop):
|
def __init__(self, loop):
|
||||||
self.loop = loop
|
self.loop = loop
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ from ..common import AuthAPI
|
|||||||
|
|
||||||
|
|
||||||
class ProvisioningAPI(AuthAPI):
|
class ProvisioningAPI(AuthAPI):
|
||||||
log = logging.getLogger("mau.provisioning")
|
log = logging.getLogger("mau.web.provisioning")
|
||||||
|
|
||||||
def __init__(self, loop):
|
def __init__(self, loop):
|
||||||
super(AuthAPI, self).__init__(loop)
|
super(AuthAPI, self).__init__(loop)
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ from ..common import AuthAPI
|
|||||||
|
|
||||||
|
|
||||||
class PublicBridgeWebsite(AuthAPI):
|
class PublicBridgeWebsite(AuthAPI):
|
||||||
log = logging.getLogger("mau.public")
|
log = logging.getLogger("mau.web.public")
|
||||||
|
|
||||||
def __init__(self, loop):
|
def __init__(self, loop):
|
||||||
super(AuthAPI, self).__init__(loop)
|
super(AuthAPI, self).__init__(loop)
|
||||||
|
|||||||
Reference in New Issue
Block a user