三十四 spring boot日誌配置詳解

2021-08-22 08:31:52 字數 1057 閱讀 8824

資料

解釋2017-10-22 20:12:10.136

時間日期 精確到毫秒

info

日誌級別- error warn debug info

1264

程序id

-分隔符,標識實際日誌的開始

[ main]

執行緒名s.d.spring.web.caching.cachingaspect

logger名,通常使用源**的類名

1、logging.file :設定檔案,可以使絕對路徑,也可以是相對路徑。

2、logging.path :設定目錄,會在該目錄下建立spring.log檔案,並寫入日誌內容。

日誌檔案會在10mb大小的時候被切斷,產生新的日誌檔案。

#設定預設日誌dubug輸出

debug=true

#將日誌輸出到檔案

logging.file=g:\springboot.txt

#演示日誌級別控制

logging.level

.com

.yang=info

其中包含了spring-boot-starter-logging,該依賴內容就是spring boot預設的日誌框架logback,所以我們在引入log4j之前,需要先排除該包的依賴,再引入log4j的依賴

org.springframework.bootgroupid>

spring-boot-starterartifactid>

org.springframework.bootgroupid>

spring-boot-starter-loggingartifactid>

exclusion>

exclusions>

dependency>

org.springframework.bootgroupid>

spring-boot-starter-log4jartifactid>

1.3.8.releaseversion>

dependency>

題解三十四

輸入整數陣列 arr 找出其中最小的 k 個數。例如,輸入4 5 1 6 2 7 3 8這8個數字,則最小的4個數字是1 2 3 4。示例 1 輸入 arr 3,2,1 k 2 輸出 1,2 或者 2,1 示例 2 思路 我們可以使用乙個大小為 k 的大頂堆,將陣列中的元素依次入堆,當堆的大小超過 ...

GNU make manual 翻譯 三十四

繼續翻譯 a directive is an instruction for make to do something special while reading the makefile.these include reading another makefile note including o...

CUDA學習(三十四)

c語言擴充套件 函式執行空間說明符 函式執行空間說明符表示函式是在主機上還是在裝置上執行,以及函式是從主機還是從裝置中呼叫。device device 執行空間說明符宣告乙個函式 global 和 device 執行空間說明符不能一起使用。global 空間說明符將乙個函式宣告為乙個核心。這樣的功能...