Revision 2458
Added by Aaron Marcuse-Kubitza almost 13 years ago
bin/map | ||
---|---|---|
80 | 80 |
if end != None: end += start |
81 | 81 |
|
82 | 82 |
# Debugging |
83 |
if test: default_verbosity = 1
|
|
84 |
else: default_verbosity = 0
|
|
83 |
if test: default_verbosity = 0.5
|
|
84 |
else: default_verbosity = 1
|
|
85 | 85 |
verbosity = util.cast(float, opts.get_env_var('verbosity', |
86 | 86 |
default_verbosity, env_names)) |
87 | 87 |
opts.get_env_var('profile_to', None, env_names) # add to env_names |
Also available in: Unified diff
bin/map: Fixed bug where verbosity needed to be 1 outside of test mode so that profiling and errors stats would be printed at end of import. Verbosity defaults to 0.5 rather than 1 in test mode so profiling and errors stats do not clutter up the test output when running automated tests.