From 082979bea6852bb3ecdd47f0410206f953f5bd42 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 29 Oct 2025 19:56:55 -0400 Subject: [PATCH] [logs] Fix class name for scrobble_for_user --- vrobbler/apps/scrobbles/mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/mixins.py b/vrobbler/apps/scrobbles/mixins.py index 52c4565..31a9150 100644 --- a/vrobbler/apps/scrobbles/mixins.py +++ b/vrobbler/apps/scrobbles/mixins.py @@ -93,7 +93,7 @@ class ScrobblableMixin(TimeStampedModel): "[scrobble_for_user] called", extra={ "id": self.id, - "media_type": self.__class__, + "media_type": self.__class__.__name__, "user_id": user_id, "scrobble_data": scrobble_data, },