问题 Normally in applications (Take web application for example) we have a single instance of the logger created during the startup. It can even be a singleton and it doesn't matter. The important thing is there is 1 instance for the whole application. We use java.util.logger Now image you have two requests from two different users which throw an exception and we are logging those which get written to the log file. Is the write in these two different requests to the log file synchronized in