I am creating a java.util.logging.FileHandler that is allowed to cycle through files. When multiple instances of my application are run, a new log file is created for each instance of the application. I need to know what file is being used by the application because I want to upload the log file to my servers for further review. How can I tell what file is being used by a certain FileHandler?
|
|
||||
|
|
|
The easiest way is to put some kind of identifier in the file name itself, i.e. the EDIT: There does not seem to be any API to get the name of the file being used by a FileHandler. I would suggest looking into the logging extensions in x4juli (which ports a lot of the log4j functionality to the java.util.logging specs): You should be able to substitute an instance of their FileHandler which provides a getFile() method: |
|||||||||||
|
|
OK, I do have to say that FileHandler not providing a way to determine the log file is seriously dumb. I wound up writing a function called "chooseFile()" which searches /tmp for the next available log file name and returns that file. You can then pass the name of that file into new FileHandler().
|
|||
|
|
|
Actually, you could do this much simpler by simply extending FileHandler yourself. For example... MyFileHandler.java:
DeleteMe.java:
|
|||
|
|