Remove some log messages

This commit is contained in:
Mathieu Comandon 2022-07-18 17:21:20 -07:00
parent 70548aac75
commit 01fd5b4655
2 changed files with 0 additions and 3 deletions

View file

@ -140,10 +140,8 @@ class LutrisInstaller: # pylint: disable=too-many-instance-attributes
def prepare_game_files(self, patch_version=None):
"""Gathers necessary files before iterating through them."""
if not self.files:
logger.info("No files to prepare")
return
if not self.service:
logger.debug("No service to retrieve files from")
return
if self.service.online and not self.service.is_connected():
logger.info("Not authenticated to %s", self.service.id)

View file

@ -157,7 +157,6 @@ class ScriptInterpreter(GObject.Object, CommandsMixin):
def get_extras(self):
"""Get extras and store them to move them at the end of the install"""
logger.debug("Checking if service provide extra files")
if not self.service or not self.service.has_extras:
self.extras = []
return self.extras