diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-23 13:41:06 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-23 13:41:06 +0200 |
commit | 84d4a5c1a43dd663392b899e986f162c7fbeb6b6 (patch) | |
tree | e46d83775f827b7a75fe85f5967c1a6649df777b | |
parent | 1353c75413f7b660939a48d09f17a18f75015e0d (diff) |
Fix logging
-rw-r--r-- | voctocore/lib/videomix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py index 6508346..d5349c5 100644 --- a/voctocore/lib/videomix.py +++ b/voctocore/lib/videomix.py @@ -220,7 +220,7 @@ class VideoMix(object): mixerpad.set_property('zorder', 0) capsfilter.set_property('caps', aCaps) - self.log.debug('Setting Mixerpad %u to x/y=%u/%u and alpha=%0.2f, zorder=%u', idx, apos[0], apos[1], 1, 1) + self.log.debug('Setting Mixerpad %u to x/y=%u/%u and alpha=%0.2f, zorder=%u', idx, apos[0], apos[1], 1, 0) self.log.debug('Setting Scaler %u to %u/%u', idx, asize[0], asize[1]) elif idx == self.sourceB: @@ -230,7 +230,7 @@ class VideoMix(object): mixerpad.set_property('zorder', 1) capsfilter.set_property('caps', bCaps) - self.log.debug('Setting Mixerpad %u to x/y=%u/%u, alpha=%0.2f, zorder=%u', idx, bpos[0], bpos[1], 1, 0) + self.log.debug('Setting Mixerpad %u to x/y=%u/%u, alpha=%0.2f, zorder=%u', idx, bpos[0], bpos[1], 1, 1) self.log.debug('Setting Scaler %u to %u/%u', idx, bsize[0], bsize[1]) else: |