diff --git a/sziszapangma/integration/service_core/embedding/embedding_base_processor.py b/sziszapangma/integration/service_core/embedding/embedding_base_processor.py
index 358299c607ea3ecc97b7dd56106890740ded5a57..d413dbbc92645b37be5f8a47187e3ef2214951c8 100644
--- a/sziszapangma/integration/service_core/embedding/embedding_base_processor.py
+++ b/sziszapangma/integration/service_core/embedding/embedding_base_processor.py
@@ -28,8 +28,8 @@ class EmbeddingBaseProcessor(ABC):
 
     def process_embeddings(self, language: str):
         words = request.json
-        print(words)
         if words is not List[str]:
+            print(f'words: {words}')
             raise Exception("Incorrect body")
         return jsonify(
             {word: self.numpy_to_list(self.get_embedding(word, language)) for word in words}