0

Revert "used LOG instead of logging on a few stragglers"

This reverts commit 144cff18e3.
This commit is contained in:
Aaron Griffith
2013-12-02 07:35:10 -05:00
parent 2967032ecc
commit a8a2a191b8
4 changed files with 10 additions and 10 deletions

View File

@@ -433,9 +433,9 @@ dir but you forgot to put quotes around the directory, since it contains spaces.
texopts_key = tuple(texopts.items())
if texopts_key not in texcache:
tex = textures.Textures(**texopts)
LOG.debug("Starting to generate textures")
logging.debug("Starting to generate textures")
tex.generate()
LOG.debug("Finished generating textures")
logging.debug("Finished generating textures")
texcache[texopts_key] = tex
else:
tex = texcache[texopts_key]