Skip to content

Commit 6795512

Browse files
committed
feature: added mamonsu version to log
1 parent 577959d commit 6795512

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mamonsu/lib/runner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import codecs
77
import os
88

9+
from mamonsu import __version__
910
import mamonsu.lib.platform as platform
1011
from mamonsu.lib.parser import parse_args, print_total_help
1112
from mamonsu.lib.config import Config
@@ -208,7 +209,7 @@ def quit_handler(_signo=None, _stack_frame=None):
208209
supervisor = Supervisor(cfg)
209210

210211
try:
211-
logging.info("Start mamonsu")
212+
logging.info("Start mamonsu " + __version__)
212213
supervisor.start()
213214
except KeyboardInterrupt:
214215
quit_handler()

0 commit comments

Comments
 (0)