Remove unneeded log message

This commit is contained in:
Mathieu Comandon 2023-01-27 16:00:19 -08:00
parent 8d6cbe043f
commit 8682b271c6

View file

@ -645,8 +645,6 @@ class Game(GObject.Object):
if settings.read_setting('discord_rpc') == 'True' and self.discord_id:
logger.info("Updating Discord RPC Status")
discord.client.update(self.discord_id)
else:
logger.info("Discord RPC Disabled or Discord APP ID Not Present")
self.heartbeat = GLib.timeout_add(HEARTBEAT_DELAY, self.beat)
with open(self.now_playing_path, "w", encoding="utf-8") as np_file: