diff --git a/lutris/installer/installer.py b/lutris/installer/installer.py index d70598171..0f3c0e298 100644 --- a/lutris/installer/installer.py +++ b/lutris/installer/installer.py @@ -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) diff --git a/lutris/installer/interpreter.py b/lutris/installer/interpreter.py index 1c084756c..08a4e1f0d 100644 --- a/lutris/installer/interpreter.py +++ b/lutris/installer/interpreter.py @@ -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