removed debug output

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-08-18 00:29:21 +02:00
parent 763718277d
commit 8de88aa5d2

View File

@@ -51,7 +51,6 @@ public class TaskLegacy extends BaseHandler {
}
private boolean postJson(UmbrellaUser umbrellaUser, Map<String, Object> params, HttpExchange ex) throws IOException {
LOG.log(System.Logger.Level.DEBUG,params);
if (params.get("ids") instanceof Map<?,?> taskIdMap){
var taskIds = taskIdMap.values().stream().map(Object::toString).map(Long::parseLong).toList();
return sendContent(ex,mapValues(taskService().load(taskIds)));