logback輸出到控制檯和檔案--配置
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>log/DocSearch.log</file>
<append>true</append>
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%-4relative [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
</appender>
<root level="debug">
<appender-ref ref="STDOUT" />
<appender-ref ref="FILE" />
</root>
</configuration>
相關文章
- tee - 重定向輸出到多個檔案
- SpringBoot之logback配置檔案Spring Boot
- Logback簡介及配置檔案logback.xml詳解XML
- 把當前目錄檔名輸出到一個檔案
- Log4j輸出到指定日誌檔案
- 通過配置檔案來修改WAS控制檯Session過期時間的方法Session
- mysql_select按照指定的格式輸出到檔案MySql
- Linux 重定向把錯誤輸出到檔案中Linux
- codeblocks 控制檯輸出亂碼BloC
- 不一樣的控制檯程式—–在控制檯中輸出圖片薦
- 巧用 Windows 系統控制檯刪除病毒檔案Windows
- python怎樣從控制檯輸入Python
- js控制檯輸出consoleJS
- iOS 控制檯輸出中文,非外掛iOS
- HybridDBforPG中如何按照資料內容定製輸出到OSS檔名和檔案個數
- springboot使用logback記錄日誌,配置檔案Spring Boot
- java 在控制檯上輸入密碼時,密碼不顯示在控制檯上Java密碼
- Java使用Scanner類進行控制檯輸入Java
- 05 Shell read讀取控制檯輸入
- 將程式碼中的除錯資訊輸出到日誌檔案中除錯
- ios 將NSLog日誌重定向輸出到檔案中儲存iOS
- SSH框架控制檯輸出HQL語句和SQL語句的方法框架SQL
- java專案中eclipse控制檯輸出log4j的資訊JavaEclipse
- 關閉(隱藏)控制檯上顯示的檔案路徑
- Go 語言控制檯輸入&生成隨機數Go隨機
- Logback配置檔案這麼寫,還愁不會整理日誌?
- 【控制檔案】映象控制檔案
- 【整理】將Linux指令碼中的正常輸出,警告,錯誤等資訊輸出到檔案中Linux指令碼
- IDEA 如何讓程式執行期間 不在 RUN 視窗的輸出,而是輸出到log 檔案Idea
- linux重定向標準錯誤與標準輸出到同一檔案Linux
- IDEA控制檯輸出中文亂碼解決方法Idea
- C# 控制檯應用程式中輸出彩色字型C#
- 在Delphi中捕獲控制檯程式的輸出 (轉)
- zookeeper控制檯
- Python專案,VS Code控制檯輸出亂碼問題解決辦法Python
- logback 配置將IDEA 的 console log 存入到檔案Idea
- SpringBoot通過yml和xml檔案配置日誌輸出Spring BootXML
- Profile配置和載入配置檔案