From 5fae67255b9d12fc883287cfecc52880c5272f8a Mon Sep 17 00:00:00 2001 From: nemunaire Date: Sun, 6 Mar 2016 17:07:20 +0100 Subject: [PATCH] Log Python version --- nemubot/bot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nemubot/bot.py b/nemubot/bot.py index f244b7a..0adb587 100644 --- a/nemubot/bot.py +++ b/nemubot/bot.py @@ -43,7 +43,9 @@ class Bot(threading.Thread): threading.Thread.__init__(self) - logger.info("Initiate nemubot v%s", __version__) + logger.info("Initiate nemubot v%s (running on Python %s.%s.%s)", + __version__, + sys.version_info.major, sys.version_info.minor, sys.version_info.micro) self.verbosity = verbosity self.stop = None