From 8ddae957f5ddeb255a670a6f6f66a8058fed872c Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Sun, 2 Apr 2017 11:12:22 +0200 Subject: [PATCH] make location of log4j config file configurable --- pdb-ui/src/main/resources/application.properties | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pdb-ui/src/main/resources/application.properties b/pdb-ui/src/main/resources/application.properties index 38874b7..adb1168 100644 --- a/pdb-ui/src/main/resources/application.properties +++ b/pdb-ui/src/main/resources/application.properties @@ -1,4 +1,7 @@ -db.base=${java.io.tmpdir}/db +base.dir=${java.io.tmpdir}/pdb +db.base=${base.dir}/db -path.tmp=${java.io.tmpdir}/pdb/tmp -path.output=${java.io.tmpdir}/pdb/out \ No newline at end of file +path.tmp=${base.dir}/tmp +path.output=${base.dir}/out + +logging.config=classpath:log4j2.properties