Log4j配置檔案

2021-07-31 21:07:16 字數 967 閱讀 4366

### set log levels ###

log4j.rootlogger = debug , stdout , d , e

### 輸出到控制台 ###

.stdout = org.apache

.stdout

.target = system.out

## 輸出info級別以上的日誌

.stdout

.threshold = debug

.stdout

.layout = org.apache

.log4j.patternlayout

.stdout

.layout

.conversionpattern = %d %5p %c:%l - %m%n

### 輸出到日誌檔案 ###

.d = org.apache

.d.file = d:/logs/log.log

.d## 輸出debug級別以上的日誌

.d.threshold = debug

.d.layout = org.apache

.log4j.patternlayout

.d.layout

.conversionpattern = %-d [ %t:%r ] - [ %p ] %m%n

### 儲存異常資訊到單獨檔案 ###

.e = org.apache

## 異常日誌檔名

.e.file = d:/logs/error.log

.e## 只輸出error級別以上的日誌!!!

.e.threshold = error

.e.layout = org.apache

.log4j.patternlayout

.e.layout

.conversionpattern = %-d [ %t:%r ] - [ %p ] %m%n

log4j配置檔案

u5e94 u7528 u4e8e u63a7 u5236 u53f0 u5e94 u7528 u4e8e u6587 u4ef6 u5e94 u7528 u4e8e u6587 u4ef6 u56de u6eda u53d1 u9001 u65e5 u5fd7 u7ed9 u90ae u4ef6 ...

Log4j配置檔案

下面給出得log4j配置檔案實現了輸出到控制台,檔案,回滾檔案,傳送日誌郵件,輸出到資料庫日誌表,自定義標籤等全套功能。log4j.rootlogger debug,console,a1,im debug,console,file,rolling file,mail,database log4j.a...

Log4j配置檔案

log4j.properties set log levels log4j.rootlogger info,console,info,error 輸出到控制台 輸出到日誌檔案 輸出info級別以上的日誌 儲存異常資訊到單獨檔案 異常日誌檔名 只輸出error級別以上的日誌 該配置需要spring支援...