Capitalise DB logger name

This commit is contained in:
Mark Veidemanis 2022-06-14 17:53:01 +01:00
parent 15d3a23351
commit f9d227831b
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from redis import StrictRedis
from settings import settings
import util
log = util.get_logger("db")
log = util.get_logger("DB")
# Define the Redis endpoint to the socket
r = StrictRedis(unix_socket_path=settings.DB.RedisSocket, db=int(settings.DB.DB))