migrated and removed unnecessary logs

This commit is contained in:
s5260822 2025-03-20 21:39:25 +01:00
parent 036e360e0d
commit 765ef4342b
2 changed files with 1 additions and 4 deletions

View file

@ -616,11 +616,8 @@ public class MongoPprUtils {
* @return
*/
public static HtmlSpeech getSpeechByKey(String key) {
System.out.println(key); // TODO: remove when no longer needed
Document filter = new Document("speechKey", key);
Document speechDoc = getSpeechCollection().find(filter).first();
System.out.println(getSpeechCollection().find().filter(Filters.eq("speechKey", key)).first()); // TODO: remove when no longer needed
System.out.println("SpeechDoc "+ speechDoc); // TODO: remove when no longer needed
if (speechDoc == null) {
Logger.error("Rede " + key + " nicht gefunden");
return null;

View file

@ -211,7 +211,7 @@ public class FrontEndController {
// No sentiment found: use a default sentiment with zero values
sentimentObj = new Sentiment(0, 0, 0.0, 0.0, 0.0, 0.0);
}
System.out.println("DEBUG: Speech Sentiment - " + sentimentObj);
Logger.debug("Speech Sentiment - " + sentimentObj);
attributes.put("sentiment", sentimentObj);
ctx.render("speech.ftl", attributes);