Remove some log messages

This commit is contained in:
Mathieu Comandon 2021-10-11 12:16:37 -07:00
parent d56dff0847
commit 4b0b0ebca6
2 changed files with 3 additions and 8 deletions

View file

@ -742,7 +742,6 @@ class LutrisWindow(Gtk.ApplicationWindow): # pylint: disable=too-many-public-me
def on_sidebar_changed(self, widget):
"""Handler called when the selected element of the sidebar changes"""
logger.debug("Sidebar changed")
for filter_type in ("category", "dynamic_category", "service", "runner", "platform"):
if filter_type in self.filters:
self.filters.pop(filter_type)
@ -804,7 +803,6 @@ class LutrisWindow(Gtk.ApplicationWindow): # pylint: disable=too-many-public-me
def on_game_collection_changed(self, _sender):
"""Simple method used to refresh the view"""
logger.debug("Game collection changed")
self.emit("view-updated")
return True

View file

@ -36,12 +36,9 @@ class atari800(Runner):
}
game_options = [
{
"option":
"main_file",
"type":
"file",
"label":
_("ROM file"),
"option": "main_file",
"type": "file",
"label": _("ROM file"),
"help": _(
"The game data, commonly called a ROM image. \n"
"Supported formats: ATR, XFD, DCM, ATR.GZ, XFD.GZ "