menu: remove unnecessary logging

This commit is contained in:
Jordan Ruthe 2020-11-28 10:33:12 -05:00
parent f7484c3df5
commit 1c0e4fbf86

View File

@ -40,12 +40,10 @@ class MenuPanel(ScreenPanel):
width = 2
key = list(items[i])[0]
logger.debug("Key: %s" % key)
item = items[i][key]
b = KlippyGtk.ButtonImage(
item['icon'], item['name'], "color"+str((i%4)+1)
)
logger.debug("Item: %s" % item)
if item['panel'] != False:
b.connect("clicked", self.menu_item_clicked, item['panel'], item)
elif item['method'] != False: