我正在开发支持多个用户的django Web应用程序。应用程序的一个要求是拥有用户特定的日志文件。例如,如果有名为'xyz'和'abc'的用户,那么应该有对应于'xyz.log'和'abc.log'的日志文件。截至目前,我可以通过在 settings.py 中添加以下内容来为整个应用程序创建日志文件:
import logging
logging.basicConfig(level=logging.DEBUG,format='%(asctime)s ::%(funcName)s ::[%(levelname)s] ::%(message)s',datefmt='%a, %d %b %Y %H:%M:%S',filename='/project.log', filemode='w')
.
.
.
//some other settings
.
.
.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
},
'console':{
'level':'ERROR',
'class':'logging.StreamHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
'django': {
'handlers':['console'],
'propagate': True,
'level':'ERROR',
},
}
}
我如何为特定用户执行相同的操作?以下是我的相关 views.py :
def login_check(request):
if request.method == 'POST':
username = request.POST['username']
password = request.POST['password']
try:
user = Application_User.objects.get(user_name=username, passwd=password)
except Application_User.DoesNotExist:
error_message = "**Incorrect login. Please try again."
context = {'error_message' : error_message}
return render_to_response('vsawebauto/login.html',context, context_instance=RequestContext(request))
else:
//this is where I need to create the logger file and begin user specific logging
答案 0 :(得分:0)
我猜你需要在视图中为记录器添加一个处理程序。您可以为该处理程序创建一个记录器,并使用它来记录与用户相关的事件。日志库是一个标准的python库,大多数文档用于以声明方式(例如,通过数据结构)在进程启动时进行配置,但是您可以调用函数来进行所需的设置,这意味着您可以在观点。
http://docs.python.org/2/library/logging.html#logging.Logger.addHandler
http://docs.python.org/2/library/logging.html#handler-objects
http://docs.python.org/2/library/logging.handlers.html#filehandler
抱歉,我不太清楚为您提供代码示例,但至少我知道在文档中的哪个位置找到它。
我不确定如果来自不同会话的同一用户同时登录会发生什么(例如,如果用户无法从一个浏览器登录,又尝试另一个浏览器)。