Skip to content

Commit 6f224d0

Browse files
committed
Removed conflicting logger from manual crop
1 parent edc9510 commit 6f224d0

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

manualcrop.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,11 @@
2424
User draws a cropping box. returns the coordinates
2525
"""
2626

27-
28-
import sys
29-
import logging
3027
from PyQt4 import QtCore, QtGui
3128
import math
3229
import operator
3330
import sys
3431
import os
35-
import numpy as np
3632
try:
3733
import Image
3834
except ImportError:
@@ -171,7 +167,6 @@ def doTheCrop(self):
171167

172168
ijCropBox = (x1, y1, width, height)
173169
#print "ImageJ friendly cropbox: makeRectangle({0})".format(str(ijCropBox))
174-
logging.info("ImageJ friendly cropbox: makeRectangle({0})".format(str(ijCropBox)))
175170
self.parent.cropbox = (x1, y1, width, height)
176171
self.parent.close()
177172

processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def run(self):
118118
format='%(asctime)s %(message)s',
119119
stream=sys.stdout)
120120
logging.info(job)
121-
121+
print 'pppppppppppppppppppppppppppppppppp'
122122
self.update.emit("Started Processing")
123123

124124

0 commit comments

Comments
 (0)