Skip to content

Commit ea27c81

Browse files
committed
Remove console.log
1 parent 3369afe commit ea27c81

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

server/src/server.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ let deleteProjectDiagnostics = (projectRootPath: string) => {
9292

9393
let compilerLogsWatcher = chokidar.watch([])
9494
.on('all', (_e, changedPath) => {
95-
console.log('new log change', changedPath, Math.random())
9695
sendUpdatedDiagnostics()
9796
})
9897
let stopWatchingCompilerLog = () => {
@@ -165,7 +164,6 @@ process.on('message', (a: (m.RequestMessage | m.NotificationMessage)) => {
165164
let params = (aa.params as p.DidOpenTextDocumentParams);
166165
let extName = path.extname(params.textDocument.uri)
167166
if (extName === c.resExt || extName === c.resiExt) {
168-
console.log("new file coming", params.textDocument.uri)
169167
openedFile(params.textDocument.uri, params.textDocument.text)
170168
}
171169
} else if (aa.method === DidChangeTextDocumentNotification.method) {

0 commit comments

Comments
 (0)