diff --git a/api/funkwhale_api/common/channels.py b/api/funkwhale_api/common/channels.py index b8106bef49f4c377c7af28f4993038e8a9a03309..d9422f6fa4285faa2ae4b12bc991810ab6f73a15 100644 --- a/api/funkwhale_api/common/channels.py +++ b/api/funkwhale_api/common/channels.py @@ -5,7 +5,7 @@ from asgiref.sync import async_to_sync from channels.layers import get_channel_layer from django.core.serializers.json import DjangoJSONEncoder -logger = logging.getLogger(__file__) +logger = logging.getLogger(__name__) channel_layer = get_channel_layer() group_add = async_to_sync(channel_layer.group_add) diff --git a/api/funkwhale_api/music/models.py b/api/funkwhale_api/music/models.py index ff7561b4b1af28d2f7c26f4be31cadf8249e89d8..21ecb994c882d441d8643a5d5d9af52c8518bb11 100644 --- a/api/funkwhale_api/music/models.py +++ b/api/funkwhale_api/music/models.py @@ -29,7 +29,7 @@ from funkwhale_api.federation import models as federation_models from funkwhale_api.federation import utils as federation_utils from . import importers, metadata, utils -logger = logging.getLogger(__file__) +logger = logging.getLogger(__name__) def empty_dict():