1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-03 01:17:56 +03:00

Refactor logger variable names in ServerManager

This commit is contained in:
Adolfo Gómez García 2024-09-26 16:22:22 +02:00
parent 386a0650b9
commit dca747969e
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23

View File

@ -50,8 +50,8 @@ if typing.TYPE_CHECKING:
from django.db.models.query import QuerySet
logger = logging.getLogger(__name__)
traceLogger = logging.getLogger('traceLog')
operationsLogger = logging.getLogger('operationsLog')
logger_trace = logging.getLogger('traceLog')
logger_operations = logging.getLogger('operationsLog')
class ServerManager(metaclass=singleton.Singleton):