Explorar el Código

[scrobbling] Missed cleaning one log

Colin Powell hace 1 año
padre
commit
78151e5070
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      vrobbler/apps/scrobbles/models.py

+ 1 - 1
vrobbler/apps/scrobbles/models.py

@@ -696,7 +696,7 @@ class Scrobble(TimeStampedModel):
             updatable = False
         if updatable and self.percent_played >= 100:
             logger.info(
-                f"[scrobbling] cannot be updated, 100% played - {self.id} - {self.source}",
+                f"[scrobbling] cannot be updated, existing scrobble is 100% played",
                 extra={"media_id": self.media_obj.id, "scrobble_id": self.id},
             )
             updatable = False