diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 361865e1..39404077 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -1306,7 +1306,7 @@ public final class Application implements IPathElement, Runnable { * Get a logger object to log events for this application. */ protected Log getLogger(String logname) { - String logdir = props.getProperty("logdir"); + String logdir = props.getProperty("logdir", "log"); if ("console".equals(logdir) || "console".equals(logname)) { return Logging.getConsoleLog();