From 89c254fb28822a15f6c030b850d325db8973621f Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Sat, 25 May 2024 19:29:06 +0200 Subject: [PATCH] fix db engine config --- cognee/tests/test_library.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cognee/tests/test_library.py b/cognee/tests/test_library.py index dba2bc5b1..4013ab56b 100755 --- a/cognee/tests/test_library.py +++ b/cognee/tests/test_library.py @@ -1,3 +1,8 @@ + +import logging +import os + +logging.basicConfig(level=logging.DEBUG) async def main(): from os import path import pathlib @@ -12,6 +17,8 @@ async def main(): # print("System dir: ", cognee_directory_path) # cognee.config.system_root_directory(cognee_directory_path) + logging.debug("CURRENCT CWD: %s", pathlib.Path(__file__).parent) + logging.debug("CURRENCT CWD: %s", os.getcwd()) dataset_name = "cs_explanations"