Skip to content

Commit

Permalink
remove log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Alan Weaver committed Dec 2, 2015
1 parent 216b2ac commit c8fa6ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pydl/pydlspec2d/spec1d/readspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ def readspec(platein, mjd=None, fiber='all', **kwargs):
(mjdvec == thismjd)).nonzero()[0]
thisfiber = fibervec[pmjdindex]
# log.debug(type(thisplate), type(thismjd))
log.info(repr(thisfiber))
log.info(type(thisfiber))
# log.debug(repr(thisfiber))
# log.debug(type(thisfiber))
pmjdstr = "{0:04d}-{1:05d}".format(int(thisplate), int(thismjd))
if 'path' in kwargs:
sppath = [kwargs['path']]
Expand Down
3 changes: 0 additions & 3 deletions pydl/pydlutils/sdss.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ def sdss_flagexist(flagname, bitname, flagexist=False, whichexist=False):
"""
global maskbits
if maskbits is None: # pragma: no cover
from .set_maskbits import set_maskbits
maskbits = set_maskbits()
#
# Make sure label is a list
Expand Down Expand Up @@ -217,7 +216,6 @@ def sdss_flagname(flagname, flagvalue, concat=False):
"""
global maskbits
if maskbits is None: # pragma: no cover
from .set_maskbits import set_maskbits
maskbits = set_maskbits()
flagu = flagname.upper()
flagvaluint = np.uint64(flagvalue)
Expand Down Expand Up @@ -268,7 +266,6 @@ def sdss_flagval(flagname, bitname):
"""
global maskbits
if maskbits is None: # pragma: no cover
from .set_maskbits import set_maskbits
maskbits = set_maskbits()
#
# Make sure inlabel is a list
Expand Down

0 comments on commit c8fa6ff

Please sign in to comment.