Files @ 026618d6681b
Branch filter:

Location: Morevna/src/config.py

Laman
refactoring: members changed to private where possible
import datetime
import logging as log


logName="/tmp/mor{0}.log".format(datetime.datetime.now().timestamp())
log.basicConfig(
	level=log.INFO,format="%(asctime)s %(levelname)s: %(message)s",datefmt="%Y-%m-%d %H:%M:%S",
	filename=logName
)

version=0

hosts=["127.0.0.1"]
port=50009