Lower log to debug level in BlockTypeIcon

This commit is contained in:
David Vierra 2016-02-08 17:16:11 -10:00
parent 0d3ebf10a8
commit 18578b574f

View File

@ -34,7 +34,7 @@ class BlockTypeIcon(QtGui.QLabel):
self.updatePixmap()
def updatePixmap(self):
log.info("Updating BlockTypeIcon with %s\t%s", self._block, self._textureAtlas)
log.debug("Updating BlockTypeIcon with %s\t%s", self._block, self._textureAtlas)
if self._textureAtlas is not None and self._block is not None:
pixmap = BlockTypePixmap(self._block, self._textureAtlas)
self.setPixmap(pixmap)