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() self.updatePixmap()
def updatePixmap(self): 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: if self._textureAtlas is not None and self._block is not None:
pixmap = BlockTypePixmap(self._block, self._textureAtlas) pixmap = BlockTypePixmap(self._block, self._textureAtlas)
self.setPixmap(pixmap) self.setPixmap(pixmap)