Skip to content

Commit

Permalink
Added some more printouts when Overviewer is first starting
Browse files Browse the repository at this point in the history
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
  • Loading branch information
eminence committed Feb 22, 2014
1 parent eda7671 commit d9e9079
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion overviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def main():
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
Expand Down Expand Up @@ -485,6 +485,7 @@ def main():
tilesets.append(tset)

# Do tileset preprocessing here, before we start dispatching jobs
logging.info("Preprocessing...")
for ts in tilesets:
ts.do_preprocessing()

Expand Down

0 comments on commit d9e9079

Please sign in to comment.