Làm cách nào để tắt Nhật ký mùa xuân để có kết quả đầu ra nhật ký mà tôi có thể dễ đọc hoặc người khác có thể đọc. Câu trả lời cho một câu hỏi tương tự tại, how to disable spring bean loading log được đề xuất để nhận xét tất cả các dòng có org.springframework
substring
trong log4j.properties
file
. Trong trường hợp của tôi không có dòng như vậy.Vô hiệu hóa nhật ký mùa xuân, để có các nhật ký có thể đọc được
Đây là log4j.properties
# Define the root logger with appender file
log4j.rootLogger = DEBUG, stdout
# Define the file appender
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
# Set the name of the logs destination
log4j.appender.stdout.target=System.out
# Set the immediate flush to true (default)
log4j.appender.stdout.ImmediateFlush=true
# Set the threshold to debug mode
log4j.appender.stdout.Threshold=debug
# Set the append to false, overwrite
log4j.appender.stdout.Append=false
# Define the layout for appender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.conversionPattern=%d{yyyy-MM-dd}:%m%n
Đúng vậy. Nhưng tùy thuộc vào nhu cầu của OP, thậm chí có thể hữu ích hơn khi thực sự thiết lập mức mặc định thành INFO hoặc cao hơn và chỉ sử dụng gỡ lỗi cho các gói của riêng mình. –