diff --git a/projects/common/models/compound-elements/cloze-element.ts b/projects/common/models/compound-elements/cloze-element.ts
index fe283c8853e55b0684609a7874ef36e45f24195b..26d530a0a93d58c9cf676343729367305062c326 100644
--- a/projects/common/models/compound-elements/cloze-element.ts
+++ b/projects/common/models/compound-elements/cloze-element.ts
@@ -61,7 +61,7 @@ export class ClozeElement extends CompoundElement implements FontElement {
     return Array.from(el.getElementsByTagName('p'));
   }
 
-  parseParagraphs(p: string, partIndex: number): void {
+  private parseParagraphs(p: string, partIndex: number): void {
     this.parts[partIndex] = []; // init array to be able to push
     let [nextSpecialElementIndex, nextElementType] = ClozeElement.getNextSpecialElement(p);
     let indexOffset = 0;
@@ -129,7 +129,6 @@ export class ClozeElement extends CompoundElement implements FontElement {
       default:
         throw new Error(`ElementType ${elementModel.type} not found!`);
     }
-    console.log('newElement', newElement);
     return newElement;
   }
 }