Skip to content

Commit

Permalink
logging back to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
aaristov committed Dec 4, 2018
1 parent d17e57c commit 60defb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bfdc/drift.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import matplotlib.pyplot as plt

logger = logging.getLogger(__name__)
#logger.setLevel(logging.WARNING)
logger.setLevel(logging.DEBUG)
logger.setLevel(logging.WARNING)
#logger.setLevel(logging.DEBUG)


class WrongCrop(Exception):
Expand Down
4 changes: 2 additions & 2 deletions bfdc/xcorr.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from skimage.feature import match_template
import logging
logger = logging.getLogger(__name__)
#logger.setLevel(logging.WARNING)
logger.setLevel(logging.DEBUG)
logger.setLevel(logging.WARNING)
#logger.setLevel(logging.DEBUG)


class LowXCorr(Exception):
Expand Down

0 comments on commit 60defb7

Please sign in to comment.