only print information about cache hits if debugging is on
This commit is contained in:
parent
4c0a2e0748
commit
925c0b31f4
1 changed files with 2 additions and 1 deletions
|
@ -96,6 +96,7 @@ def rendertask(task):
|
|||
|
||||
frame = tuple(frame)
|
||||
if frame in cache:
|
||||
if debug:
|
||||
print("cache hit, reusing frame {0}".format(cache[frame]))
|
||||
|
||||
framedir = task.workdir + "/.frames/"
|
||||
|
|
Loading…
Add table
Reference in a new issue