Collect more statistics about number of solid and transparent blocks and print them in mttilemapper.

This commit is contained in:
Sascha L. Teichmann
2014-10-26 17:09:23 +01:00
parent 99ff99a8f4
commit 2aa9ee0e24
2 changed files with 21 additions and 11 deletions

View File

@ -117,5 +117,7 @@ func main() {
}
log.Printf("num blocks: %d\n", numBlocks)
log.Printf("rejected blocks: %d\n", renderer.Rejected)
log.Printf("rejected blocks: %d\n", renderer.RejectedBlocks)
log.Printf("transparent blocks: %d\n", renderer.TransparentBlocks)
log.Printf("solid blocks: %d\n", renderer.SolidBlocks)
}