Change the welcome message to be slightly different

when running in local mode vs non-local mode, which
is useful when tracking what is happening in the
console and in the logs that are written out later.
This commit is contained in:
Joshua Harlow 2012-07-10 17:49:59 -07:00
parent 50c5dc6931
commit cef7bb96d7

View File

@ -160,7 +160,10 @@ def main_init(name, args):
# objects config as it may be different from init object
# 10. Run the modules for the 'init' stage
# 11. Done!
w_msg = welcome_format(name)
if not args.local:
w_msg = welcome_format(name)
else:
w_msg = welcome_format("%s-local" % (name))
init = stages.Init(deps)
# Stage 1
init.read_cfg(extract_fns(args))