Log4j2 未在 Linux 中使用 Spring Boot 創建日誌文件 (Log4j2 not creating log file with Spring Boot in Linux)


問題描述

Log4j2 未在 Linux 中使用 Spring Boot 創建日誌文件 (Log4j2 not creating log file with Spring Boot in Linux)

我正在使用 Log4j2 通過 Spring Boot 進行日誌記錄,但它沒有創建日誌文件。下面給出的是我對 Log4j2 的配置和我添加的依賴項。

Log4j2 配置 ‑

    <?xml version="1.0" encoding="UTF‑8"?>
<Configuration>
    <Appenders>
        <Console name="Console" target="SYSTEM_OUT">
            <PatternLayout
                pattern="%style{%d{ISO8601}}{black} %highlight{%‑5level }[%style{%t}{bright,blue}] %style{%C{1.}}{bright,yellow}: %msg%n%throwable" />
        </Console>

        <!‑‑ File Appender ‑‑>
        <File name="File" fileName=".logs/app.log">
          <PatternLayout pattern="%d{yyyy‑MMM‑dd HH:mm:ss a} [%t] %‑5level %logger{36} ‑ %msg%n" />
        </File>
    </Appenders>

    <Loggers>
        <!‑‑ LOG everything at INFO level ‑‑>
        <Root level="info">
            <AppenderRef ref="Console" />
            <AppenderRef ref="File" />
        </Root>

        <!‑‑ LOG "com.baeldung*" at TRACE level ‑‑>
        <Logger name="com.ams" level="trace">
            <AppenderRef ref="File" />
        </Logger>
    </Loggers>

</Configuration>

Pom.xml

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring‑boot‑starter‑web</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring‑boot‑starter‑logging</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

    <!‑‑ Add Log4j2 Dependency ‑‑>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring‑boot‑starter‑log4j2</artifactId>
    </dependency>

我需要任何其他配置或依賴項添加 ?因為根據 web 上的博客 log4j2 應該使用上面提供的配置創建日誌文件。


參考解法

方法 1:

Maybe this link will help you. In my case i had to exclude the spring boot startet logging in the pom xml because otherwise the default logging logback is active and log4j won't be used.

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring‑boot‑starter</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring‑boot‑starter‑logging</artifactId>
            </exclusion>
        </exclusions>
    </dependency>

(by Jainesh kumarFishingIsLife)

參考文件

  1. Log4j2 not creating log file with Spring Boot in Linux (CC BY‑SA 2.5/3.0/4.0)

#log4j2 #logging #spring-boot #spring






相關問題

Làm cách nào để thêm phần phụ Log4J2 vào thời gian chạy theo chương trình? (How to add Log4J2 appenders at runtime programmatically?)

使用 Spring 和 Log4j2 的 Classloader-Leak (Classloader-Leak with Spring and Log4j2)

log4j2 RolllingFileAppender filePattern 創建日期錯誤 (log4j2 RolllingFileAppender filePattern create a wrong date)

將時間戳添加到日誌文件名時出錯 (log4j2) (Error adding timestamp to log file name (log4j2))

log4j2 - 以編程方式更改 RollingFileAppender 的最大文件大小 (log4j2 - programmatically change max file size of RollingFileAppender)

log4j 沒有登錄到文件或控制台 (log4j is not logging into file or console)

Log4j2 未在 Linux 中使用 Spring Boot 創建日誌文件 (Log4j2 not creating log file with Spring Boot in Linux)

application.properties 中的外部 log4j2.xml 文件路徑 (External log4j2.xml file path in application.properties)

使用 Spring 的依賴於配置文件的 log4j2 配置 (Profile-dependent log4j2 configuration with Spring)

從 log4j2.xml 訪問環境變量 (Accessing environment variable from log4j2.xml)

Spring Boot 應用程序中的內部 tomcat 停止響應調用 (internal tomcat inside spring boot application stops responding to calls)

如何在 mule 應用程序中實現 log4j2 (2.14.0) 'JSON 模板佈局'? (How can I implement log4j2 (2.14.0) 'JSON Template Layout' in a mule application?)







留言討論