From d9e907913e6679da1512dd6c38b1352c2d854c8e Mon Sep 17 00:00:00 2001 From: Andrew Chin Date: Fri, 21 Feb 2014 22:11:29 -0500 Subject: [PATCH] Added some more printouts when Overviewer is first starting Often, when people ask questions about Overviewer, "all it says is 'Welcome to Overivwer'" is a common question. Enable a little more logging info at the start of Overviewer to hopefully make it more clear that something is happening --- overviewer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/overviewer.py b/overviewer.py index 915dc39..eeaf2ed 100755 --- a/overviewer.py +++ b/overviewer.py @@ -435,7 +435,7 @@ 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) - logging.debug("Starting to generate textures") + logging.info("Generating textures...") tex.generate() logging.debug("Finished generating textures") texcache[texopts_key] = tex @@ -485,6 +485,7 @@ dir but you forgot to put quotes around the directory, since it contains spaces. tilesets.append(tset) # Do tileset preprocessing here, before we start dispatching jobs + logging.info("Preprocessing...") for ts in tilesets: ts.do_preprocessing()