aboutsummaryrefslogtreecommitdiff
path: root/src/toolkit/frame.py
diff options
context:
space:
mode:
authortassaron2017-08-14 10:10:32 -0400
committertassaron2017-08-14 10:10:32 -0400
commitbed07479f1b4bf24a0b9c84217d41ebbe880a8fb (patch)
tree7b54d6d322b8b517cf9d461ccdbbc602c26369ab /src/toolkit/frame.py
parent9c8792df9bad068fed8a9a1777b2774c103c9ce4 (diff)
faster Spectrum preview & custom VERBOSE loglvl
Diffstat (limited to 'src/toolkit/frame.py')
-rw-r--r--src/toolkit/frame.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/toolkit/frame.py b/src/toolkit/frame.py
index 63774a6..ad8537c 100644
--- a/src/toolkit/frame.py
+++ b/src/toolkit/frame.py
@@ -21,6 +21,7 @@ class FramePainter(QtGui.QPainter):
Pillow image with finalize()
'''
def __init__(self, width, height):
+ log.verbose('Creating new FramePainter')
image = BlankFrame(width, height)
self.image = QtGui.QImage(ImageQt(image))
super().__init__(self.image)
@@ -77,7 +78,7 @@ def defaultSize(framefunc):
def FloodFrame(width, height, RgbaTuple):
- log.debug('Creating new %s*%s %s flood frame' % (
+ log.verbose('Creating new %s*%s %s flood frame' % (
width, height, RgbaTuple))
return Image.new("RGBA", (width, height), RgbaTuple)