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.
1 parent bcba5b3 commit 43fd7caCopy full SHA for 43fd7ca
.env
@@ -1 +1 @@
1
-DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:54322/postgres
+DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/postgres
crates/pg_workspace_new/src/workspace/server.rs
@@ -399,6 +399,12 @@ impl Workspace for WorkspaceServer {
399
&self,
400
params: super::CompletionParams,
401
) -> Result<pg_completions::CompletionResult, WorkspaceError> {
402
+ tracing::debug!(
403
+ "Getting completions for file {:?} at position {:?}",
404
+ ¶ms.path,
405
+ ¶ms.position
406
+ );
407
+
408
let doc = self
409
.documents
410
.get(¶ms.path)
0 commit comments