Removing low level PyAccess debug logging

This commit is contained in:
wiredfool 2015-09-14 03:38:52 -07:00
parent 21459e9ab4
commit e3a8044a38

View File

@ -54,7 +54,9 @@ class PyAccess(object):
self.xsize = vals['xsize']
self.ysize = vals['ysize']
logger.debug("%s", vals)
# Debugging is polluting test traces, only useful here
# when hacking on PyAccess
#logger.debug("%s", vals)
self._post_init()
def _post_init(self):
@ -310,7 +312,6 @@ def new(img, readonly=False):
if not access_type:
logger.debug("PyAccess Not Implemented: %s", img.mode)
return None
logger.debug("New PyAccess: %s", img.mode)
return access_type(img, readonly)
# End of file