Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I use System.out.println() to debug my Spring Boot application. It is fine in my IDE. When run standalone, there is a strange situation when println from my @Controller prints to the console, but println from my @RestController doesn't (I see them both printing to the output in the IDE). I have this in application.properties:

server.tomcat.accesslog.enabled=true
server.tomcat.accesslog.directory=/dev
server.tomcat.accesslog.prefix=stdout
server.tomcat.accesslog.buffered=false
server.tomcat.accesslog.suffix=
server.tomcat.accesslog.file-date-format=

I am not sure what these constants mean. Is there a method of having all println from all threads print to the console? The @RestController executes, because Tomcat shows that it has been called, it returns 200 and the application works correctly.

question from:https://stackoverflow.com/questions/65852149/println-in-spring-boot-logs

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Prefer using logs (slf4j, log4j) instead of System.out.println With right configuration, it will write your logs in a file ".log", with date and time of traces (info, debug, warn, error levels) It is more appropriate if you want to deploy your app on a remote server.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...