(action, msg=None)
| 128 | |
| 129 | |
| 130 | def welcome(action, msg=None): |
| 131 | if not msg: |
| 132 | msg = welcome_format(action) |
| 133 | log_util.multi_log("%s\n" % (msg), console=False, stderr=True, log=LOG) |
| 134 | return msg |
| 135 | |
| 136 | |
| 137 | def welcome_format(action): |
no test coverage detected