From 4cdd796a3d629e60e590328d18e2d1b8a53eb4de Mon Sep 17 00:00:00 2001 From: Daniel Pavel Date: Sat, 4 May 2013 19:50:50 +0200 Subject: [PATCH] comment-out some debugging prints --- lib/solaar/gtk.py | 4 ++-- lib/solaar/ui/main_window.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/solaar/gtk.py b/lib/solaar/gtk.py index 3a62491d..c29330f4 100644 --- a/lib/solaar/gtk.py +++ b/lib/solaar/gtk.py @@ -83,14 +83,14 @@ def _run(args): # if l is not None: # l.stop() - print ("****", action, device, listeners) + # print ("****", action, device, listeners) # callback delivering status notifications from the receiver/devices to the UI from gi.repository import GLib from logitech.unifying_receiver.status import ALERT def status_changed(device, alert=ALERT.NONE, reason=None): assert device is not None - print ("status changed", device, reason) + # print ("status changed", device, reason) GLib.idle_add(ui.status_icon.update, icon, device) GLib.idle_add(ui.main_window.update, device, alert & ALERT.SHOW_WINDOW) diff --git a/lib/solaar/ui/main_window.py b/lib/solaar/ui/main_window.py index 084c2356..4392beb1 100644 --- a/lib/solaar/ui/main_window.py +++ b/lib/solaar/ui/main_window.py @@ -425,7 +425,7 @@ def _update_device_box(frame, dev): def update(device, popup=False): assert device is not None - print ("main_window.update", device) + # print ("main_window.update", device) receiver = device if device.kind is None else device.receiver w = _windows.get(receiver.path)