We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 815dd55 commit eb71563Copy full SHA for eb71563
src/features/linter-provider.ts
@@ -102,7 +102,7 @@ export class FortranLintingProvider {
102
compilerOutput += data;
103
});
104
childProcess.stderr.on('end', () => {
105
- this.logger.debug(`[lint] Compiler output:`, compilerOutput);
+ this.logger.debug(`[lint] Compiler output:\n${compilerOutput}`);
106
let diagnostics = this.getLinterResults(compilerOutput);
107
diagnostics = [...new Map(diagnostics.map(v => [JSON.stringify(v), v])).values()];
108
this.diagnosticCollection.set(textDocument.uri, diagnostics);
0 commit comments