added database code: attachments now also added to appointment lists
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -79,7 +79,7 @@ public class Application {
|
||||
}
|
||||
|
||||
private static void configureLogging(JsonConfig jsonConfig) {
|
||||
var rootLevel = jsonConfig.get("opencloudcal.logging.rootlevel", "INFO");
|
||||
var rootLevel = jsonConfig.get("opencloudcal.logging.rootLevel", "INFO");
|
||||
ColorLogger.setRootLogLevel(mapLogLevel(rootLevel));
|
||||
|
||||
var loggers = jsonConfig.get("opencloudcal.logging.loggers").orElse(null);
|
||||
@@ -97,7 +97,7 @@ public class Application {
|
||||
case "WARN" -> WARNING;
|
||||
case "DEBUG" -> DEBUG;
|
||||
case "TRACE" -> TRACE;
|
||||
default ->INFO;
|
||||
default -> INFO;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user