Update some log messages

This commit is contained in:
Andrew Ferrazzutti 2021-10-14 20:48:10 -04:00
parent bba3f87635
commit dd87cd7366
1 changed files with 3 additions and 3 deletions

View File

@ -540,7 +540,7 @@ class Portal(DBPortal, BasePortal):
async def _update_icon(self, icon: Optional[PathImage], client: Optional[Client]) -> bool: async def _update_icon(self, icon: Optional[PathImage], client: Optional[Client]) -> bool:
if icon: if icon:
if icon.url and not icon.path: if icon.url and not icon.path:
self.log.warn(f"Using URL as path for room icon of {self.name}") self.log.warn(f"Using URL as path for room icon of {self.name or self.chat_id}")
icon_path = icon_url = icon.url icon_path = icon_url = icon.url
else: else:
icon_path = icon.path icon_path = icon.path
@ -549,7 +549,7 @@ class Portal(DBPortal, BasePortal):
icon_path = icon_url = None icon_path = icon_url = None
if icon_path != self.icon_path: if icon_path != self.icon_path:
self.log.info(f"Updating room icon of {self.name}") self.log.info(f"Updating room icon of {self.name or self.chat_id}")
self.icon_path = icon_path self.icon_path = icon_path
if icon_url: if icon_url:
if not client: if not client:
@ -566,7 +566,7 @@ class Portal(DBPortal, BasePortal):
self.log.exception(f"Failed to set room icon: {e}") self.log.exception(f"Failed to set room icon: {e}")
return True return True
else: else:
self.log.debug(f"No need to update room icon of {self.name}, new icon has same path as old one") self.log.debug(f"No need to update room icon of {self.name or self.chat_id}, new icon has same path as old one")
return False return False
async def _update_participants(self, participants: List[Participant]) -> None: async def _update_participants(self, participants: List[Participant]) -> None: