0
我知道SiftingAppener及其記錄事件分成單獨的日誌能力的文件的logback - SiftingAppender與嵌入式數據庫的Appender
相反,可以根據用戶會話SiftingAppender單獨記錄事件,因此由每一個生成的日誌用戶進入ONE SQL插入語句(類似於帶有One文件的FileAppender)
有關如何實現此目的的任何想法或建議?
請注意:行號
前:
TimeStamp Formatted Message Logger_Name Level_String
1 1321325688174 Step 2: Then stop com.test.Account INFO
2 1321325687931 Step 1: The force com.test.Account INFO
後:
TimeStamp Formatted Message Logger_Name Level_String
1 1321325688174 Step 2: Then stop com.test.Account INFO
1321325687931 Step 1: The force com.test.Account INFO
感謝。
你能舉個例子嗎? – palacsint
所以'後'只有一個記錄,你只需要一個插入像'INSERT INTO logs(TimeStamp,Formatted,...)VALUES('1321325688174 1321325687931','Step 2:Step 1:',...) '? – palacsint