chore(calendar): remove redundant log

This commit is contained in:
Elian Doran 2025-03-16 20:38:25 +02:00
parent d7e31f94fd
commit 2b24673019
No known key found for this signature in database

View File

@ -472,7 +472,6 @@ export default class CalendarView extends ViewMode {
for (const targetNote of notesFromRelation) { for (const targetNote of notesFromRelation) {
const targetCustomTitleValue = targetNote.getAttributeValue("label", "calendar:title"); const targetCustomTitleValue = targetNote.getAttributeValue("label", "calendar:title");
console.log("Parse custom title for ", targetNote.noteId, targetNote.getAttributes(), targetNote.getOwnedAttributes());
const targetTitles = await CalendarView.#parseCustomTitle(targetCustomTitleValue, targetNote, false); const targetTitles = await CalendarView.#parseCustomTitle(targetCustomTitleValue, targetNote, false);
titles.push(targetTitles.flat()); titles.push(targetTitles.flat());
} }