Remove debug logs

This commit is contained in:
Nathan Thomas 2021-09-29 12:25:42 -07:00
parent 4d8118356a
commit c16edbc984

View file

@ -287,16 +287,12 @@ class TrackMetadata:
@property @property
def title(self) -> Optional[str]: def title(self) -> Optional[str]:
logger.debug("accessign title")
if not hasattr(self, "_title"): if not hasattr(self, "_title"):
logger.debug("no title")
return None return None
if self.explicit: if self.explicit:
logger.debug("explicit title")
return f"{self._title} (Explicit)" return f"{self._title} (Explicit)"
logger.debug("non explicit title")
return self._title return self._title
@title.setter @title.setter