C log4配置問題

2021-09-20 09:50:56 字數 460 閱讀 1905

這個幾天一直在試log4日誌問題,第乙個控制台裡面使用的,照著文件做,沒啥問題,但是把這些檔案拷到mvc中不能使用了,跑起來也沒有報錯,最後在網上發現。 是引用程式assemblyinfo.cs 配置不同。

[assembly: log4net.config.xmlconfigurator(configfileextension = "config", watch = true)]
2.當時在mvc中配置就完全變了

.配置assemblyinfo.cs

[assembly: log4net.config.xmlconfiguratorattribute(configfile = "log4net.config", watch = true)]
把在根目錄下面單獨建個config–》log4net.config,把裡面配置拉到裡面

log4j配置問題

啟動專案發現了乙個warn 看看專案的目錄結構,沒有發現log4j.properties 在web專案的src資料夾下建立乙個classes目錄,然後新建乙個檔案log4j.properties 內容如下 configure logging for testing optionally with l...

關於log4j的配置問題

每次開啟tomcat控制台的時候,總是會出現初始化log4j的提示,今天決心把問題解決掉。在web inf classes 中新建 log4j.properties 檔案,加入以下 便能實現將錯誤資訊在後台顯示並寫入到日誌檔案 jkpt two.log 中 log4j.rootlogger erro...

springmvc中配置log4j的問題

根據某些網上資料說明,使用 code org.springframework.web.util.log4jconfiglistener code 進行配置,然而這個設定在tomcat裡面是無效的,而且會出現所有url無效問題,仔細看了下jpetstore中web.xml的說明才發現 code cod...