We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
print
1 parent ae09089 commit a890610Copy full SHA for a890610
1 file changed
src/vectorcode/common.py
@@ -78,9 +78,8 @@ async def start_server(configs: Config):
78
if not os.path.isdir(configs.db_log_path):
79
os.makedirs(configs.db_log_path)
80
if not os.path.isdir(db_path):
81
- print(
+ logger.warning(
82
f"Using local database at {os.path.expanduser('~/.local/share/vectorcode/chromadb/')}.",
83
- file=sys.stderr,
84
)
85
db_path = os.path.expanduser("~/.local/share/vectorcode/chromadb/")
86
env = os.environ.copy()
0 commit comments