Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update logger

authored by

Jovi De Croock and committed by
GitHub
39f31ccb efeed9bf

+1 -1
+1 -1
src/index.ts
··· 52 52 53 53 function create(info: ts.server.PluginCreateInfo) { 54 54 const logger: Logger = (msg: string) => 55 - info.project.projectService.logger.info(`[ts-graphql-plugin] ${msg}`); 55 + info.project.projectService.logger.info(`[GraphQLSP] ${msg}`); 56 56 logger('config: ' + JSON.stringify(info.config)); 57 57 if (!info.config.schema) { 58 58 throw new Error('Please provide a GraphQL Schema!');