Skip to content

Commit 43fd7ca

Browse files
committed
format
1 parent bcba5b3 commit 43fd7ca

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:54322/postgres
1+
DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/postgres

crates/pg_workspace_new/src/workspace/server.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,12 @@ impl Workspace for WorkspaceServer {
399399
&self,
400400
params: super::CompletionParams,
401401
) -> Result<pg_completions::CompletionResult, WorkspaceError> {
402+
tracing::debug!(
403+
"Getting completions for file {:?} at position {:?}",
404+
&params.path,
405+
&params.position
406+
);
407+
402408
let doc = self
403409
.documents
404410
.get(&params.path)

0 commit comments

Comments
 (0)