Skip to content

Commit

Permalink
fix: Remove debug console log
Browse files Browse the repository at this point in the history
  • Loading branch information
famoser committed Feb 8, 2024
1 parent d1e28e4 commit 4d5a7d5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server/src/references.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ export const getReferences = async (identifier: TextDocumentIdentifier, position
await referenceCollector.collect(definitionSymbol.uri);
const references = referenceCollector.getReferences();

console.log(references);

return references
.map(reference => constructLocationLink(reference.uri, reference.match))
.filter(nonNullable);
Expand Down

0 comments on commit 4d5a7d5

Please sign in to comment.