diff options
author | MaZderMind <github@mazdermind.de> | 2016-01-07 11:07:32 +0100 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2016-01-07 11:07:32 +0100 |
commit | 07ff65e7a6d1a87276e9f017162aff52d712342f (patch) | |
tree | f78d93651d3cbd77105ada87e6ecfee0878de8e9 /voctogui | |
parent | 32b9a74da6a2dc48412f5c5e7756ec447b127f48 (diff) |
better debug output in gui
Diffstat (limited to 'voctogui')
-rw-r--r-- | voctogui/lib/videodisplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/voctogui/lib/videodisplay.py b/voctogui/lib/videodisplay.py index b6eab6b..61f7919 100644 --- a/voctogui/lib/videodisplay.py +++ b/voctogui/lib/videodisplay.py @@ -7,7 +7,7 @@ class VideoDisplay(object): """ Displays a Voctomix-Video-Stream into a GtkWidget """ def __init__(self, drawing_area, port, play_audio=False, level_callback=None): - self.log = logging.getLogger('VideoDisplay[%s]' % drawing_area.get_name()) + self.log = logging.getLogger('VideoDisplay[%u]' % port) self.drawing_area = drawing_area self.level_callback = level_callback |