我们需要在运行时自定义服务器上的日志级别。我们正在使用 Django 构建一个 SAAS 应用程序,我们最终必须能够为每个租户启用日志记录。我正在努力寻找最好的方法。
作为第一步,我创建了一种动态更改日志级别的方法(针对整个应用程序)。我看到没有这样做的例子。我注意到到目前为止是否有人尝试过这样的事情,我应该注意哪些陷阱。
到目前为止,这是我的代码。感谢是否有人可以阐明我将遇到的特定陷阱。还感谢有关如何控制每个租户和模块的日志记录的任何输入,除了为每个模块的每个租户创建记录器:
import threading
import logging.config
import time
import os
import traceback
class LogConfigWatcher(threading.Thread):
def __init__(self, storage, location):
self.last_known_time = None
self.storage = storage
self.location = location
threading.Thread.__init__(self)
def run(self):
while True:
mod_time = os.path.getmtime(self.location)
if(mod_time != self.last_known_time):
try:
with file(self.location) as f:
print("Configuring logging . . .")
config = eval(f.read())
logging.config.dictConfig(config['handler_config'])
logging.config.dictConfig(config['logger_config'])
self.last_known_time = mod_time
except:
traceback.print_exc()
print "Failed to Configure the log"
pass
time.sleep(5)
class LogConfigHolder(object):
def __init__(self, storage, location):
self.storage = storage
self.location = location
self.initialize(storage, location)
def initialize(self, storage, location):
self.pid = os.getpid()
print "Starting thread for %s" % self.pid
self.thread = LogConfigWatcher(storage, location)
self.thread.setDaemon(True)
self.thread.start()
def is_alive(self):
if os.getpid() != self.pid:
return False
return self.thread.isAlive()
def restart(self):
if not self.is_alive():
self.initialize(self.storage, self.location)