From 0fff2ec388b3d44ce7dd4328e4c2fc3d9156d382 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 12 Mar 2024 12:53:11 -0400 Subject: [PATCH] [scrobbling] Little location scrobble log clean up --- vrobbler/apps/scrobbles/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 02cd3a5..8be5d6c 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -901,7 +901,7 @@ class Scrobble(TimeStampedModel): ) logger.info( - f"[scrobbling] check for existing scrobble to update ", + f"[scrobbling] fetching last location scrobble", extra={ "scrobble_id": scrobble.id if scrobble else None, "media_type": cls.MediaType.GEO_LOCATION, @@ -912,7 +912,7 @@ class Scrobble(TimeStampedModel): if not scrobble: logger.info( - f"[scrobbling] creating - no existing location scrobbles found", + f"[scrobbling] finished - no existing location scrobbles found", extra={ "media_id": location.id, "media_type": cls.MediaType.GEO_LOCATION,