Relative paths are used in the log4j.properties file.
How can i find the absolute path programatically where logs are stored?
|
|
From: http://www.gunith.com/2010/11/how-to-get-the-file-path-of-a-log4j-log-file/ Assume the log4j.properties file is as below,
In such case, your Java code should be as follows,
Note that its not migrationlog which was used when making the logger object is used when retrieving the file name, but migration |
|||
|
|
|
i think one way is like this: since the path is relative to system property "user.dir" so relative path = ./app.log becomes {user.dir}/app.log get user.dir as System.getproperty("user.dir"). |
|||
|
|