Skip to content

Commit

Permalink
Removed conflicting logger from manual crop
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchsig committed Nov 10, 2016
1 parent edc9510 commit 6f224d0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions manualcrop.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,11 @@
User draws a cropping box. returns the coordinates
"""


import sys
import logging
from PyQt4 import QtCore, QtGui
import math
import operator
import sys
import os
import numpy as np
try:
import Image
except ImportError:
Expand Down Expand Up @@ -171,7 +167,6 @@ def doTheCrop(self):

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

Expand Down
2 changes: 1 addition & 1 deletion processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def run(self):
format='%(asctime)s %(message)s',
stream=sys.stdout)
logging.info(job)

print 'pppppppppppppppppppppppppppppppppp'
self.update.emit("Started Processing")


Expand Down

0 comments on commit 6f224d0

Please sign in to comment.