logdir must not be null. Use "log" as default value.

This commit is contained in:
hns 2003-12-16 12:38:16 +00:00
parent 2c7bbc011c
commit 144dee55cd

View file

@ -52,7 +52,7 @@ public class Logging extends LogFactory {
* helma.logdir system property. * helma.logdir system property.
*/ */
public Logging() { public Logging() {
logdir = System.getProperty("helma.logdir"); logdir = System.getProperty("helma.logdir", "log");
} }
/** /**