關於專案log

2021-08-07 20:38:37 字數 1277 閱讀 2521

#定義log輸出級別

log4j.rootlogger=debug,console,file,error

#定義日誌輸出目的地為控制台

.console=org.apache

.console

.target=system.out

#可以靈活地指定日誌輸出格式,下面兩行是指定具體的格式

.console

.layout = org.apache

.log4j.patternlayout

.console

.layout

.conversionpattern=[%c] - %m%n

#定義日誌輸出的目的地為乙個檔案,每天生成乙個檔案

.file = org.apache

#指定輸出目錄

.file

.file = $/logs/log4j/systemdebug.log

#輸出所有日誌,如果換成debug表示輸出debug以上級別日誌

.file

.threshold = debug

#設定每天的日誌檔案字尾名

.file

.datepattern = '.'yyyy-mm-dd

#可以靈活地指定日誌輸出格式,下面兩行是指定具體的格式

.file

.layout = org.apache

.log4j.patternlayout

.file

.layout

.conversionpattern =[%p] [%d][%c]%m%n

#定義日誌輸出的目的地為乙個檔案,每天生成乙個檔案

.error = org.apache

#指定輸出目錄

.error

.file = $/logs/log4j/systemerror.log

#輸出所有日誌,如果換成debug表示輸出debug以上級別日誌

.error

.threshold = error

#設定每天的日誌檔案字尾名

.error

.datepattern = '.'yyyy-mm-dd

#可以靈活地指定日誌輸出格式,下面兩行是指定具體的格式

.error

.layout = org.apache

.log4j.patternlayout

.error

.layout

.conversionpattern =[%p] [%d][%c]%m%n

關於 日誌log

概述 介紹日誌的基本概念 用途和日誌生成規則。x系統 日誌包括 x系統 執行過程中的所有行為記錄資訊,各模組在執行過程中的關鍵位置,都會記錄相關日誌。通過分析 x系統 日誌,可以了解 x系統 的執行狀態。出現故障時可以通過日誌定位故障產生的時間,原因等資訊。x系統 的日誌生成是通過緩衝方式實現。即日...

python專案的log配置

import logging 建立logging物件 logger logging.getlogger log dir path xx x test.log log檔案路徑 建立乙個檔案物件,如果檔案超過500個bytes,僅保留5個檔案。fh logging.handlers.rotatingfi...

log日誌專案中的應用

log日誌的應用 from selenium import webdriver import unittest import logging 從當前檔案所在目錄中匯入log.py檔案中所有內容 from log操作.log import class testsogoubyobjectmap unit...