added database code: attachments now also added to appointment lists

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-01-03 21:19:54 +01:00
parent e45164b82c
commit 098bf2ee90
4 changed files with 43 additions and 14 deletions
@@ -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;
};
}