您好,登錄后才能下訂單哦!
這篇文章主要介紹了基于Django實(shí)現(xiàn)日志記錄報(bào)錯(cuò)信息,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
當(dāng)服務(wù)器500錯(cuò)誤的時(shí)候,普通日志只會(huì)記錄一行500的request信息,并不會(huì)記錄詳細(xì)的報(bào)錯(cuò)定位
[ERROR] 2019-06-12 15:07:03,597 "GET /api/v1/test/ HTTP/1.1" 500 74196
需要添加一個(gè)在日志中記錄詳細(xì)錯(cuò)誤信息的middleware
# -*- coding: UTF-8 -*- import logging logger = logging.getLogger('default') class ExceptionLoggingMiddleware(object): def process_exception(self, request, exception): import traceback logger.error(traceback.format_exc())
將此中間件添加到settings的MIDDLEWARE_CLASSES中
MIDDLEWARE_CLASSES = ( 'utils.my_middleware.ExceptionLoggingMiddleware', )
使用Django logger
'loggers': { 'django': { 'handlers': ['file', 'console'], 'level': 'INFO' },
效果
[ERROR] 2019-06-12 15:07:02,265 Internal Server Error: /api/v1/test/ Traceback (most recent call last): File "E:\tcp_check\venv\lib\site-packages\django\core\handlers\exception.py", line 35, in inner response = get_response(request) File "E:\tcp_check\venv\lib\site-packages\django\core\handlers\base.py", line 128, in _get_response response = self.process_exception_by_middleware(e, request) File "E:\tcp_check\venv\lib\site-packages\django\core\handlers\base.py", line 126, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "E:\tcp_check\tcp_test_app\views.py", line 23, in test a=1/0 ZeroDivisionError: division by zero [ERROR] 2019-06-12 15:07:03,597 "GET /api/v1/test/ HTTP/1.1" 500 74196
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。