diff options
| author | tassaron | 2017-08-14 10:10:32 -0400 |
|---|---|---|
| committer | tassaron | 2017-08-14 10:10:32 -0400 |
| commit | bed07479f1b4bf24a0b9c84217d41ebbe880a8fb (patch) | |
| tree | 7b54d6d322b8b517cf9d461ccdbbc602c26369ab /src/toolkit | |
| parent | 9c8792df9bad068fed8a9a1777b2774c103c9ce4 (diff) | |
faster Spectrum preview & custom VERBOSE loglvl
Diffstat (limited to 'src/toolkit')
| -rw-r--r-- | src/toolkit/frame.py | 3 |
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) |
