Log current version on startup

We recently got a bug report from someone running Limnoria in Docker, and it turned
out that a plugin's import was segfaulting and Docker silently restarted the process.

I wasted some time figuring out what happened because I didn't notice the process
was being restarted. This should make this more noticeable in the future.
This commit is contained in:
Valentin Lorentz 2025-03-28 22:11:12 +01:00
parent a558d1d95b
commit 35731acd86

View File

@ -76,6 +76,9 @@ from supybot.version import version
def run():
import supybot.log as log
log.info("Starting Limnoria %s on Python %s", version, sys.version)
import supybot.conf as conf
import supybot.world as world
import supybot.drivers as drivers